From 4b8a54693282f12d53737d7b7addba5398b99920 Mon Sep 17 00:00:00 2001 From: Justin Santa Barbara Date: Sun, 1 Sep 2013 14:36:59 -0700 Subject: [PATCH] Increase default SSH timeout for OpenStack from 1m -> 5m Many cloud providers have a minimum charge of 1 hour, and if there are DNS problems we can hit the 1 minute timeout easily. Waiting five minutes gives more of a margin of error. --- builder/openstack/run_config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/openstack/run_config.go b/builder/openstack/run_config.go index 6c281a35f..6618472db 100644 --- a/builder/openstack/run_config.go +++ b/builder/openstack/run_config.go @@ -39,7 +39,7 @@ func (c *RunConfig) Prepare(t *packer.ConfigTemplate) []error { } if c.RawSSHTimeout == "" { - c.RawSSHTimeout = "1m" + c.RawSSHTimeout = "5m" } // Validation