2013-06-05 17:49:04 -04:00
|
|
|
package vmware
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"github.com/mitchellh/multistep"
|
|
|
|
"github.com/mitchellh/packer/packer"
|
|
|
|
"os/exec"
|
2013-06-05 18:48:13 -04:00
|
|
|
"time"
|
2013-06-05 17:49:04 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// This step runs the created virtual machine.
|
|
|
|
//
|
|
|
|
// Uses:
|
2013-06-05 18:48:13 -04:00
|
|
|
// config *config
|
2013-06-05 17:49:04 -04:00
|
|
|
// ui packer.Ui
|
|
|
|
// vmx_path string
|
|
|
|
//
|
|
|
|
// Produces:
|
|
|
|
// <nothing>
|
2013-06-05 18:48:13 -04:00
|
|
|
type stepRun struct {
|
2013-06-05 20:59:33 -04:00
|
|
|
bootTime time.Time
|
|
|
|
vmxPath string
|
2013-06-05 17:49:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *stepRun) Run(state map[string]interface{}) multistep.StepAction {
|
2013-06-05 18:48:13 -04:00
|
|
|
config := state["config"].(*config)
|
2013-06-05 17:49:04 -04:00
|
|
|
ui := state["ui"].(packer.Ui)
|
|
|
|
vmxPath := state["vmx_path"].(string)
|
|
|
|
|
|
|
|
vmrun_path := "/Applications/VMware Fusion.app/Contents/Library/vmrun"
|
|
|
|
|
2013-06-05 20:59:33 -04:00
|
|
|
// 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-05 20:59:33 -04:00
|
|
|
cmd := exec.Command(vmrun_path, "-T", "fusion", "start", s.vmxPath, "gui")
|
2013-06-05 17:49:04 -04:00
|
|
|
if err := cmd.Run(); err != nil {
|
|
|
|
ui.Error(fmt.Sprintf("Error starting VM: %s", err))
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
2013-06-05 18:48:13 -04:00
|
|
|
// Wait the wait amount
|
|
|
|
if config.BootWait > 0 {
|
|
|
|
ui.Say(fmt.Sprintf("Waiting %d seconds for boot...", config.BootWait))
|
2013-06-05 20:15:16 -04:00
|
|
|
time.Sleep(time.Duration(config.BootWait) * time.Second)
|
2013-06-05 18:48:13 -04:00
|
|
|
}
|
|
|
|
|
2013-06-05 17:49:04 -04:00
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *stepRun) Cleanup(state map[string]interface{}) {
|
|
|
|
ui := state["ui"].(packer.Ui)
|
|
|
|
|
|
|
|
vmrun_path := "/Applications/VMware Fusion.app/Contents/Library/vmrun"
|
|
|
|
|
|
|
|
// If we started the machine... stop it.
|
|
|
|
if s.vmxPath != "" {
|
2013-06-05 20:59:33 -04:00
|
|
|
// If we started it less than 5 seconds ago... wait.
|
|
|
|
sinceBootTime := time.Since(s.bootTime)
|
|
|
|
waitBootTime := 5 * time.Second
|
|
|
|
if sinceBootTime < waitBootTime {
|
|
|
|
time.Sleep(waitBootTime - sinceBootTime)
|
|
|
|
}
|
|
|
|
|
2013-06-05 17:49:04 -04:00
|
|
|
ui.Say("Stopping virtual machine...")
|
2013-06-05 18:19:25 -04:00
|
|
|
cmd := exec.Command(vmrun_path, "-T", "fusion", "stop", s.vmxPath, "hard")
|
2013-06-05 17:49:04 -04:00
|
|
|
if err := cmd.Run(); err != nil {
|
|
|
|
ui.Error(fmt.Sprintf("Error stopping VM: %s", err))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|