From f8673931b81993dc57dc39ce41a579fcd5460a7b Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Wed, 7 Nov 2018 08:32:03 -0800 Subject: [PATCH] Increase boot timeout --- net/gce.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/gce.sh b/net/gce.sh index 1a524de7d0..f2184f43ca 100755 --- a/net/gce.sh +++ b/net/gce.sh @@ -219,7 +219,7 @@ EOF echo "Waiting for $name to finish booting..." ( set -x - for i in $(seq 1 45); do + for i in $(seq 1 60); do if timeout 20s ssh "${sshOptions[@]}" "$publicIp" "test -f /.instance-startup-complete"; then exit 0 fi