packer-cn/builder/virtualbox/common/step_run.go

81 lines
1.8 KiB
Go
Raw Normal View History

2013-12-22 13:30:12 -05:00
package common
2013-06-11 23:46:32 -04:00
import (
"fmt"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
"time"
)
// This step starts the virtual machine.
//
// Uses:
2013-12-22 13:30:12 -05:00
// driver Driver
// ui packer.Ui
// vmName string
2013-06-11 23:46:32 -04:00
//
// Produces:
2013-12-22 13:30:12 -05:00
type StepRun struct {
BootWait time.Duration
Headless bool
2013-06-11 23:46:32 -04:00
vmName string
}
2013-12-22 13:30:12 -05:00
func (s *StepRun) Run(state multistep.StateBag) multistep.StepAction {
driver := state.Get("driver").(Driver)
2013-08-31 15:44:58 -04:00
ui := state.Get("ui").(packer.Ui)
vmName := state.Get("vmName").(string)
2013-06-11 23:46:32 -04:00
ui.Say("Starting the virtual machine...")
2013-07-02 00:13:24 -04:00
guiArgument := "gui"
2013-12-22 13:30:12 -05:00
if s.Headless == true {
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 {
err := fmt.Errorf("Error starting VM: %s", err)
2013-08-31 15:44:58 -04:00
state.Put("error", err)
ui.Error(err.Error())
2013-06-11 23:46:32 -04:00
return multistep.ActionHalt
}
s.vmName = vmName
2013-12-22 13:30:12 -05:00
if int64(s.BootWait) > 0 {
ui.Say(fmt.Sprintf("Waiting %s for boot...", s.BootWait))
wait := time.After(s.BootWait)
WAITLOOP:
for {
select {
case <-wait:
break WAITLOOP
case <-time.After(1 * time.Second):
if _, ok := state.GetOk(multistep.StateCancelled); ok {
return multistep.ActionHalt
}
}
}
2013-06-11 23:56:44 -04:00
}
2013-06-11 23:46:32 -04:00
return multistep.ActionContinue
}
2013-12-22 13:30:12 -05:00
func (s *StepRun) Cleanup(state multistep.StateBag) {
2013-06-11 23:46:32 -04:00
if s.vmName == "" {
return
}
2013-12-22 13:30:12 -05:00
driver := state.Get("driver").(Driver)
2013-08-31 15:44:58 -04:00
ui := state.Get("ui").(packer.Ui)
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
}
}