Moved the 1 sec timeout to the export step

This commit is contained in:
Lyndon Washington 2013-10-09 12:59:47 -04:00
parent ff970483c4
commit 88e65ef59b
1 changed files with 6 additions and 0 deletions

View File

@ -5,6 +5,8 @@ import (
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
"path/filepath"
"log"
"time"
)
// This step cleans up forwarded ports and exports the VM to an OVF.
@ -21,6 +23,10 @@ func (s *stepExport) Run(state multistep.StateBag) multistep.StepAction {
ui := state.Get("ui").(packer.Ui)
vmName := state.Get("vmName").(string)
// Wait a second to ensure VM is really shutdown.
log.Println("1 second timeout to ensure VM is really shutdown")
time.Sleep(1 * time.Second)
// Clear out the Packer-created forwarding rule
ui.Say("Preparing to export machine...")
ui.Message(fmt.Sprintf("Deleting forwarded port mapping for SSH (host port %d)", state.Get("sshHostPort")))