Bugfix Missing "$" in front of some variables
authorjose.lausuch <jose.lausuch@ericsson.com>
Mon, 18 Jan 2016 21:55:08 +0000 (22:55 +0100)
committerjose.lausuch <jose.lausuch@ericsson.com>
Mon, 18 Jan 2016 21:56:33 +0000 (22:56 +0100)
Change-Id: I1192ee4cf692861509777c9c13f917ff58dc8660
Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
testcases/VIM/OpenStack/CI/libraries/check_os.sh

index 1327eff..63d4ea6 100755 (executable)
@@ -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"