From 6b7ce4c37f3a9609d5aa9cd24d7765d5814e8c5c Mon Sep 17 00:00:00 2001 From: Jack Wang Date: Wed, 31 Jul 2013 16:57:55 +0200 Subject: [PATCH] storage_deploy: fix typo in log output Signed-off-by: Jack Wang --- storage_deploy.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.39.5