aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/sdnc/components/sdnc-prom/resources/bin/switchVoting.sh
diff options
context:
space:
mode:
authorKrzysztof Opasiak <k.opasiak@samsung.com>2021-04-27 20:25:19 +0000
committerGerrit Code Review <gerrit@onap.org>2021-04-27 20:25:19 +0000
commitad0f69e402aaff1e19a5330f3949d3f445b949b5 (patch)
tree5c9a6440a726b4e26e463d50692080fa2a2cc93a /kubernetes/sdnc/components/sdnc-prom/resources/bin/switchVoting.sh
parentf545b5b04321e75824d2eb609c1deab0a75c9509 (diff)
parent5f4af0525aacf7a13efbbcefeab436b915abc4c8 (diff)
Merge "[COMMON] Fix condition equality bashisms"
Diffstat (limited to 'kubernetes/sdnc/components/sdnc-prom/resources/bin/switchVoting.sh')
-rwxr-xr-xkubernetes/sdnc/components/sdnc-prom/resources/bin/switchVoting.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/kubernetes/sdnc/components/sdnc-prom/resources/bin/switchVoting.sh b/kubernetes/sdnc/components/sdnc-prom/resources/bin/switchVoting.sh
index 8057547b59..c36d2e3e9f 100755
--- a/kubernetes/sdnc/components/sdnc-prom/resources/bin/switchVoting.sh
+++ b/kubernetes/sdnc/components/sdnc-prom/resources/bin/switchVoting.sh
@@ -26,7 +26,7 @@ LOGFILE="/app/geo.log"
enableDebugLogging=true
debugLog(){
- if [ "$enableDebugLogging" == true ]; then
+ if [ "$enableDebugLogging" = true ]; then
if [ $# -eq 0 ]; then
echo "" >> $LOGFILE
else