mirror of
https://github.com/hashicorp/packer.git
synced 2026-05-28 04:35:38 -04:00
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.
This commit is contained in:
parent
d8b048662f
commit
4b8a546932
1 changed files with 1 additions and 1 deletions
|
|
@ -39,7 +39,7 @@ func (c *RunConfig) Prepare(t *packer.ConfigTemplate) []error {
|
|||
}
|
||||
|
||||
if c.RawSSHTimeout == "" {
|
||||
c.RawSSHTimeout = "1m"
|
||||
c.RawSSHTimeout = "5m"
|
||||
}
|
||||
|
||||
// Validation
|
||||
|
|
|
|||
Loading…
Reference in a new issue