From 02b9d6829efb4d45010eefdb5da401329dc7922f Mon Sep 17 00:00:00 2001 From: Roger Luethi Date: Mon, 16 Nov 2015 19:45:11 +0100 Subject: [PATCH] Minor formatting fix for launch_instance.sh Start ping and summary output on a new line. Change-Id: Ibb7b7ea9d0abcf2539390afe930770bdbf1f385e --- labs/osbash/scripts/test/launch_instance.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/labs/osbash/scripts/test/launch_instance.sh b/labs/osbash/scripts/test/launch_instance.sh index 34e72792..be153fe0 100755 --- a/labs/osbash/scripts/test/launch_instance.sh +++ b/labs/osbash/scripts/test/launch_instance.sh @@ -712,6 +712,7 @@ function patient_ping { # Ping the instance VM every ten seconds if [[ $((cnt % 10)) -eq 0 ]]; then if ping -c1 "$ip" > /dev/null ; then + echo ping -c1 "$ip" echo "SUM ping instance VM after $cnt seconds." break @@ -720,6 +721,7 @@ function patient_ping { # Abort if it takes too long if [[ $cnt -gt 600 ]]; then + echo echo "SUM ERROR no ping for instance VM in $cnt seconds. Aborting." exit 1 fi