diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2016-01-19 09:06:14 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-01-19 09:06:14 +0000 |
commit | d625cf85fce974a05c5afee55d14cf2e779aa412 (patch) | |
tree | 3ba0f14a3cd9876ce3ed482adc899f6259ff24d9 | |
parent | a705adb5cfc718a205faee1f463522ba41cb2b34 (diff) | |
parent | 36a3d6d9de841ec459a4edc7890d5aeb2fe46024 (diff) |
Merge "Bugfix Missing "$" in front of some variables"
-rwxr-xr-x | testcases/VIM/OpenStack/CI/libraries/check_os.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testcases/VIM/OpenStack/CI/libraries/check_os.sh b/testcases/VIM/OpenStack/CI/libraries/check_os.sh index 1327eff5f..63d4ea696 100755 --- a/testcases/VIM/OpenStack/CI/libraries/check_os.sh +++ b/testcases/VIM/OpenStack/CI/libraries/check_os.sh @@ -31,7 +31,7 @@ echo ">>Verifying connectivity to the public endpoint $publicIP:$publicPort..." verify_connectivity $publicIP $publicPort RETVAL=$? if [ $RETVAL -ne 0 ]; then - echo "ERROR: Cannot talk to the public endpoint publicIP:$publicPort ." + echo "ERROR: Cannot talk to the public endpoint $publicIP:$publicPort ." echo "OS_AUTH_URL=$OS_AUTH_URL" exit 1 fi @@ -44,8 +44,8 @@ echo ">>Verifying connectivity to the admin endpoint $adminIP:$adminPort..." verify_connectivity $adminIP $adminPort RETVAL=$? if [ $RETVAL -ne 0 ]; then - echo "ERROR: Cannot talk to the admin endpoint adminIP:$adminPort ." - echo "adminURL" + echo "ERROR: Cannot talk to the admin endpoint $adminIP:$adminPort ." + echo "$adminURL" exit 1 fi echo " ...OK" |