aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis de Talhouët <adetalhouet89@gmail.com>2017-03-09 16:40:39 -0500
committerAlexis de Talhouët <adetalhouet89@gmail.com>2017-03-09 21:43:43 +0000
commit7743ee8f8fa48026d6b3cbb0ed1d4f5d2c5d9add (patch)
tree37aa83caa0104cf557571a27318b45eed9af5281
parent15b0f730117d4b10f60a7a3188a37c63d7549542 (diff)
Fix docker_health.sh third check
if [[ ${res} != 0 ]] checks wether the value is "0" but the value return by the command is " 0" hence the validation fails. Changing the if to compare string instead of integer. Change-Id: Ibb671dcc9c4cd870b931e9e06a185aa4bea5dc5f Signed-off-by: Alexis de Talhouët <adetalhouet89@gmail.com>
-rw-r--r--sdc-os-chef/scripts/docker_health.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/sdc-os-chef/scripts/docker_health.sh b/sdc-os-chef/scripts/docker_health.sh
index 832b25a237..1db5282446 100644
--- a/sdc-os-chef/scripts/docker_health.sh
+++ b/sdc-os-chef/scripts/docker_health.sh
@@ -14,7 +14,7 @@ curl http://localhost:8181/sdc1/rest/healthCheck
echo ""
echo ""
res=`curl -s -X GET -H "Accept: application/json" -H "Content-Type: application/json" -H "USER_ID: jh0003" "http://localhost:8080/sdc2/rest/v1/user/demo" | wc -l`
-if [[ ${res} != 0 ]]
+if [[ ! ${res} -eq 0 ]]
then
echo "Error [${res}] while user existance check"
exit ${res}