diff --git a/builder/openstack/builder.go b/builder/openstack/builder.go index 2ec71daf9..ff123f6f3 100644 --- a/builder/openstack/builder.go +++ b/builder/openstack/builder.go @@ -84,7 +84,7 @@ func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packe &StepKeyPair{ Debug: b.config.PackerDebug, DebugKeyPath: fmt.Sprintf("os_%s.pem", b.config.PackerBuildName), - }, + }, &StepRunSourceServer{ Name: b.config.ImageName, Flavor: b.config.Flavor, diff --git a/builder/openstack/step_key_pair.go b/builder/openstack/step_key_pair.go index 68535f809..8f729b40f 100644 --- a/builder/openstack/step_key_pair.go +++ b/builder/openstack/step_key_pair.go @@ -7,8 +7,8 @@ import ( "github.com/mitchellh/packer/packer" "github.com/rackspace/gophercloud" "log" - "os" - "runtime" + "os" + "runtime" ) type StepKeyPair struct {