We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c5b31f commit 7bbe3bcCopy full SHA for 7bbe3bc
go.sh
@@ -77,10 +77,12 @@ if [ -z ${DISABLE_SYSDIG_METRICS+x} ]; then
77
EOF-SYSDIG-SERVER
78
fi
79
80
-IFS=',' read -a LOCATIONS_ARRAY <<< "$LOCATIONS_CSV"
81
-for i in "${!LOCATIONS_ARRAY[@]}"; do
82
- /enable_location.sh $((${i} + 1)) ${LOCATIONS_ARRAY[$i]}
83
-done
+if [ "${CUSTOM_PROXY_CONFIG}" != "TRUE" ]; then
+ IFS=',' read -a LOCATIONS_ARRAY <<< "$LOCATIONS_CSV"
+ for i in "${!LOCATIONS_ARRAY[@]}"; do
+ /enable_location.sh $((${i} + 1)) ${LOCATIONS_ARRAY[$i]}
84
+ done
85
+fi
86
87
if [ "${NAME_RESOLVER}" == "" ]; then
88
if [ "${DNSMASK}" == "TRUE" ]; then
0 commit comments