packer-cn/builder/vmware/step_run.go

77 lines
1.8 KiB
Go
Raw Normal View History

2013-06-05 17:49:04 -04:00
package vmware
import (
"fmt"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
"time"
2013-06-05 17:49:04 -04:00
)
// This step runs the created virtual machine.
//
// Uses:
// config *config
2013-06-06 15:19:38 -04:00
// driver Driver
2013-06-05 17:49:04 -04:00
// ui packer.Ui
// vmx_path string
//
// Produces:
// <nothing>
type stepRun struct {
bootTime time.Time
vmxPath string
2013-06-05 17:49:04 -04:00
}
func (s *stepRun) Run(state map[string]interface{}) multistep.StepAction {
config := state["config"].(*config)
2013-06-06 15:19:38 -04:00
driver := state["driver"].(Driver)
2013-06-05 17:49:04 -04:00
ui := state["ui"].(packer.Ui)
vmxPath := state["vmx_path"].(string)
// Set the VMX path so that we know we started the machine
s.bootTime = time.Now()
s.vmxPath = vmxPath
2013-06-05 17:49:04 -04:00
ui.Say("Starting virtual machine...")
2013-06-06 15:19:38 -04:00
if err := driver.Start(vmxPath); err != nil {
2013-06-20 00:20:48 -04:00
err := fmt.Errorf("Error starting VM: %s", err)
state["error"] = err
ui.Error(err.Error())
2013-06-05 17:49:04 -04:00
return multistep.ActionHalt
}
// Wait the wait amount
if int64(config.BootWait) > 0 {
ui.Say(fmt.Sprintf("Waiting %s for boot...", config.BootWait.String()))
time.Sleep(config.BootWait)
}
2013-06-05 17:49:04 -04:00
return multistep.ActionContinue
}
func (s *stepRun) Cleanup(state map[string]interface{}) {
2013-06-06 15:19:38 -04:00
driver := state["driver"].(Driver)
2013-06-05 17:49:04 -04:00
ui := state["ui"].(packer.Ui)
// If we started the machine... stop it.
if s.vmxPath != "" {
// If we started it less than 5 seconds ago... wait.
sinceBootTime := time.Since(s.bootTime)
waitBootTime := 5 * time.Second
if sinceBootTime < waitBootTime {
2013-06-06 15:19:38 -04:00
sleepTime := waitBootTime - sinceBootTime
ui.Say(fmt.Sprintf("Waiting %s to give VMware time to clean up...", sleepTime.String()))
time.Sleep(sleepTime)
}
// See if it is running
running, _ := driver.IsRunning(s.vmxPath)
if running {
ui.Say("Stopping virtual machine...")
if err := driver.Stop(s.vmxPath); err != nil {
ui.Error(fmt.Sprintf("Error stopping VM: %s", err))
}
2013-06-05 17:49:04 -04:00
}
}
}