mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-24 16:54:09 -04:00
Merge pull request #2191 from mitchellh/b-google-ssh-timeout
builder/google: don't hardcode SSH timeout [GH-1781]
This commit is contained in:
@@ -4,11 +4,11 @@ package googlecompute
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"log"
|
||||
|
||||
"github.com/mitchellh/multistep"
|
||||
"github.com/mitchellh/packer/common"
|
||||
"github.com/mitchellh/packer/packer"
|
||||
"log"
|
||||
"time"
|
||||
)
|
||||
|
||||
// The unique ID for this builder.
|
||||
@@ -63,7 +63,7 @@ func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packe
|
||||
&common.StepConnectSSH{
|
||||
SSHAddress: sshAddress,
|
||||
SSHConfig: sshConfig,
|
||||
SSHWaitTimeout: 5 * time.Minute,
|
||||
SSHWaitTimeout: b.config.sshTimeout,
|
||||
},
|
||||
new(common.StepProvision),
|
||||
new(StepTeardownInstance),
|
||||
|
||||
Reference in New Issue
Block a user