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

81 lines
2.1 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 (
"context"
2013-06-11 23:46:32 -04:00
"fmt"
2017-03-28 21:29:55 -04:00
"github.com/hashicorp/packer/helper/multistep"
2017-04-04 16:39:01 -04:00
"github.com/hashicorp/packer/packer"
2013-06-11 23:46:32 -04:00
)
// 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 {
Headless bool
2013-06-11 23:46:32 -04:00
vmName string
}
func (s *StepRun) Run(ctx context.Context, state multistep.StateBag) multistep.StepAction {
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)
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"
2017-03-28 21:29:55 -04:00
if s.Headless {
vrdpIpRaw, vrdpIpOk := state.GetOk("vrdpIp")
vrdpPortRaw, vrdpPortOk := state.GetOk("vrdpPort")
if vrdpIpOk && vrdpPortOk {
vrdpIp := vrdpIpRaw.(string)
2019-03-19 09:47:21 -04:00
vrdpPort := vrdpPortRaw.(int)
ui.Message(fmt.Sprintf(
"The VM will be run headless, without a GUI. If you want to\n"+
2016-02-12 02:53:40 -05:00
"view the screen of the VM, connect via VRDP without a password to\n"+
"rdp://%s:%d", vrdpIp, vrdpPort))
} else {
ui.Message("The VM will be run headless, without a GUI, as configured.\n" +
2016-02-12 02:53:40 -05:00
"If the run isn't succeeding as you expect, please enable the GUI\n" +
"to inspect the progress of the build.")
}
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
// instance_id is the generic term used so that users can have access to the
// instance id inside of the provisioners, used in step_provision.
state.Put("instance_id", s.vmName)
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
}
}