2013-06-11 23:46:32 -04:00
|
|
|
package virtualbox
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"github.com/mitchellh/multistep"
|
|
|
|
"github.com/mitchellh/packer/packer"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
// This step starts the virtual machine.
|
|
|
|
//
|
|
|
|
// Uses:
|
|
|
|
//
|
|
|
|
// Produces:
|
2013-06-12 00:08:45 -04:00
|
|
|
type stepRun struct {
|
2013-06-11 23:46:32 -04:00
|
|
|
vmName string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *stepRun) Run(state map[string]interface{}) multistep.StepAction {
|
2013-06-11 23:56:44 -04:00
|
|
|
config := state["config"].(*config)
|
2013-06-11 23:46:32 -04:00
|
|
|
driver := state["driver"].(Driver)
|
|
|
|
ui := state["ui"].(packer.Ui)
|
|
|
|
vmName := state["vmName"].(string)
|
|
|
|
|
|
|
|
ui.Say("Starting the virtual machine...")
|
2013-07-02 00:13:24 -04:00
|
|
|
guiArgument := "gui"
|
|
|
|
if config.Headless == true {
|
2013-07-02 15:20:26 -04:00
|
|
|
ui.Message("WARNING: The VM will be started in headless mode, as configured.\n" +
|
|
|
|
"In headless mode, errors during the boot sequence or OS setup\n" +
|
2013-07-03 19:11:37 -04:00
|
|
|
"won't be easily visible. Use at your own discretion.")
|
2013-07-02 00:13:24 -04:00
|
|
|
guiArgument = "headless"
|
|
|
|
}
|
|
|
|
command := []string{"startvm", vmName, "--type", guiArgument}
|
2013-06-11 23:46:32 -04:00
|
|
|
if err := driver.VBoxManage(command...); err != nil {
|
2013-06-20 00:07:53 -04:00
|
|
|
err := fmt.Errorf("Error starting VM: %s", err)
|
|
|
|
state["error"] = err
|
|
|
|
ui.Error(err.Error())
|
2013-06-11 23:46:32 -04:00
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
|
|
|
s.vmName = vmName
|
|
|
|
|
2013-07-14 08:22:11 -04:00
|
|
|
if int64(config.bootWait) > 0 {
|
|
|
|
ui.Say(fmt.Sprintf("Waiting %s for boot...", config.bootWait))
|
|
|
|
time.Sleep(config.bootWait)
|
2013-06-11 23:56:44 -04:00
|
|
|
}
|
|
|
|
|
2013-06-11 23:46:32 -04:00
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *stepRun) Cleanup(state map[string]interface{}) {
|
|
|
|
if s.vmName == "" {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
driver := state["driver"].(Driver)
|
|
|
|
ui := state["ui"].(packer.Ui)
|
2013-06-24 01:00:40 -04:00
|
|
|
|
|
|
|
if running, _ := driver.IsRunning(s.vmName); running {
|
|
|
|
if err := driver.VBoxManage("controlvm", s.vmName, "poweroff"); err != nil {
|
|
|
|
ui.Error(fmt.Sprintf("Error shutting down VM: %s", err))
|
|
|
|
}
|
2013-06-11 23:46:32 -04:00
|
|
|
}
|
|
|
|
}
|