]> Frank Brehm's Git Trees - profitbricks/jenkins-build-scripts.git/commitdiff
storage_deploy: fix typo in log output
authorJack Wang <jinpu.wang@profitbricks.com>
Wed, 31 Jul 2013 14:57:55 +0000 (16:57 +0200)
committerJack Wang <jinpu.wang@profitbricks.com>
Wed, 31 Jul 2013 14:57:55 +0000 (16:57 +0200)
Signed-off-by: Jack Wang <jinpu.wang@profitbricks.com>
storage_deploy.sh

index 2483d0b0dfe0b5c624f22d3fcf7602340ae83504..8cc4e59779b1cb7739711363267ed7deb1c90d43 100755 (executable)
@@ -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