builder/googlecompute: disable other steps for now

This commit is contained in:
Mitchell Hashimoto 2013-12-12 21:39:42 -08:00
parent 2bd6f1e2d7
commit 52f51a1dcd
1 changed files with 3 additions and 2 deletions

View File

@ -4,7 +4,6 @@ package googlecompute
import (
"log"
"time"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/common"
@ -52,6 +51,8 @@ func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packe
steps := []multistep.Step{
new(StepCreateSSHKey),
new(StepCreateInstance),
}
/*
new(stepInstanceInfo),
&common.StepConnectSSH{
SSHAddress: sshAddress,
@ -63,7 +64,7 @@ func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packe
new(stepCreateImage),
new(stepUploadImage),
new(stepRegisterImage),
}
}*/
// Run the steps.
if b.config.PackerDebug {