From: Jack Wang Date: Wed, 31 Jul 2013 14:57:55 +0000 (+0200) Subject: storage_deploy: fix typo in log output X-Git-Url: https://git.uhu-banane.de/?a=commitdiff_plain;h=6b7ce4c37f3a9609d5aa9cd24d7765d5814e8c5c;p=profitbricks%2Fjenkins-build-scripts.git storage_deploy: fix typo in log output Signed-off-by: Jack Wang --- diff --git a/storage_deploy.sh b/storage_deploy.sh index 2483d0b..8cc4e59 100755 --- a/storage_deploy.sh +++ b/storage_deploy.sh @@ -95,14 +95,14 @@ wait_until_online() { log -n " Waiting for '$srv' to get on-line:" while_with_timeout $timeout "not" "ping -c1 -w1 $srv" "echo -n ." || { - log " ERROR: Server did not come back after 100 seconds." + log " ERROR: Server did not come back after '$timeout' seconds." return 1 } echo log -n " Waiting for '$srv' to start its SSH service:" while_with_timeout $timeout "not" "rexec $srv true" "echo -n ." || { - log " ERROR: Server did not start ssh after 100 seconds." + log " ERROR: Server did not start ssh after '$timeout' seconds." return 1 } echo @@ -116,7 +116,7 @@ wait_for_reboot() { log -n " Waiting for '$srv' to shut down:" while_with_timeout $timeout "ping -c1 -w1 $srv" "echo -n ." || { - log " ERROR: Server did not shut down after 100 seconds." + log " ERROR: Server did not shut down after '$timeout' seconds." return 1 } echo