This commit is contained in:
Mitchell Hashimoto 2013-12-26 17:20:13 -07:00
parent 3109a48bb6
commit 366d169388
2 changed files with 3 additions and 3 deletions

View File

@ -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,

View File

@ -7,8 +7,8 @@ import (
"github.com/mitchellh/packer/packer"
"github.com/rackspace/gophercloud"
"log"
"os"
"runtime"
"os"
"runtime"
)
type StepKeyPair struct {