Commit 52f51a1d authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

builder/googlecompute: disable other steps for now

parent 2bd6f1e2
...@@ -4,7 +4,6 @@ package googlecompute ...@@ -4,7 +4,6 @@ package googlecompute
import ( import (
"log" "log"
"time"
"github.com/mitchellh/multistep" "github.com/mitchellh/multistep"
"github.com/mitchellh/packer/common" "github.com/mitchellh/packer/common"
...@@ -52,6 +51,8 @@ func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packe ...@@ -52,6 +51,8 @@ func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packe
steps := []multistep.Step{ steps := []multistep.Step{
new(StepCreateSSHKey), new(StepCreateSSHKey),
new(StepCreateInstance), new(StepCreateInstance),
}
/*
new(stepInstanceInfo), new(stepInstanceInfo),
&common.StepConnectSSH{ &common.StepConnectSSH{
SSHAddress: sshAddress, SSHAddress: sshAddress,
...@@ -63,7 +64,7 @@ func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packe ...@@ -63,7 +64,7 @@ func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packe
new(stepCreateImage), new(stepCreateImage),
new(stepUploadImage), new(stepUploadImage),
new(stepRegisterImage), new(stepRegisterImage),
} }*/
// Run the steps. // Run the steps.
if b.config.PackerDebug { if b.config.PackerDebug {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment