From 4aa2aeedfffa45e2e2022a070bcc350b2a0210e5 Mon Sep 17 00:00:00 2001 From: Gary Wu Date: Thu, 9 Nov 2017 11:42:15 -0800 Subject: Update robot initialization detection Change-Id: I0b19fde5d36b4b5582c983979a336eddab46f87c Issue-ID: INT-278 Signed-off-by: Gary Wu --- test/ete/scripts/run-healthcheck.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'test/ete/scripts/run-healthcheck.sh') diff --git a/test/ete/scripts/run-healthcheck.sh b/test/ete/scripts/run-healthcheck.sh index 10811b500..057504efd 100755 --- a/test/ete/scripts/run-healthcheck.sh +++ b/test/ete/scripts/run-healthcheck.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/bash -x SSH_KEY=~/.ssh/onap_key @@ -13,6 +13,10 @@ cd $WORKSPACE/test/ete/scripts ROBOT_IP=$(./get-floating-ip.sh onap-robot) echo "ROBOT_IP=${ROBOT_IP}" +if [ "" == "${ROBOT_IP}" ]; then + exit 1 +fi + ssh-keygen -R ${ROBOT_IP} ssh -o StrictHostKeychecking=no -i ${SSH_KEY} root@${ROBOT_IP} "OS_PASSWORD_INPUT=$OS_PASSWORD_INPUT bash -s" < ./remote/run-robot.sh -- cgit 1.2.3-korg