Added ability to see what SSH Port packer generated in template data

This commit is contained in:
Dan Sedlacek 2015-10-29 11:24:20 -07:00 committed by Chris Bednarski
parent 7d90d3f0d0
commit 279555b8e1
1 changed files with 7 additions and 5 deletions

View File

@ -19,11 +19,12 @@ type stepRun struct {
}
type qemuArgsTemplateData struct {
HTTPIP string
HTTPPort uint
HTTPDir string
OutputDir string
Name string
HTTPIP string
HTTPPort uint
HTTPDir string
OutputDir string
Name string
SSHHostPort uint
}
func (s *stepRun) Run(state multistep.StateBag) multistep.StepAction {
@ -148,6 +149,7 @@ func getCommandArgs(bootDrive string, state multistep.StateBag) ([]string, error
config.HTTPDir,
config.OutputDir,
config.VMName,
sshHostPort,
}
newQemuArgs, err := processArgs(config.QemuArgs, &ctx)
if err != nil {