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

pull/3190/head
Dan Sedlacek 11 years ago committed by Chris Bednarski
parent 7d90d3f0d0
commit 279555b8e1

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

Loading…
Cancel
Save