From: Alexis de Talhouët Date: Thu, 9 Mar 2017 21:40:39 +0000 (-0500) Subject: Fix docker_health.sh third check X-Git-Tag: 1.0.0-Amsterdam~274 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=7743ee8f8fa48026d6b3cbb0ed1d4f5d2c5d9add;p=sdc.git 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 --- 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}