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

100 lines
2.7 KiB
Go
Raw Normal View History

2013-12-24 20:12:43 -05:00
package common
2013-06-05 17:49:04 -04:00
import (
"context"
2013-06-05 17:49:04 -04:00
"fmt"
2017-10-09 20:12:33 -04:00
"time"
"github.com/hashicorp/packer/helper/multistep"
2017-04-04 16:39:01 -04:00
"github.com/hashicorp/packer/packer"
2013-06-05 17:49:04 -04:00
)
// This step runs the created virtual machine.
//
// Uses:
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>
2013-12-24 20:12:43 -05:00
type StepRun struct {
DurationBeforeStop time.Duration
Headless bool
bootTime time.Time
vmxPath string
2013-06-05 17:49:04 -04:00
}
func (s *StepRun) Run(ctx context.Context, state multistep.StateBag) multistep.StepAction {
2013-12-24 20:12:43 -05:00
driver := state.Get("driver").(Driver)
2013-08-31 15:50:25 -04:00
ui := state.Get("ui").(packer.Ui)
vmxPath := state.Get("vmx_path").(string)
2013-06-05 17:49:04 -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-12-24 20:12:43 -05:00
if s.Headless {
vncIpRaw, vncIpOk := state.GetOk("vnc_ip")
vncPortRaw, vncPortOk := state.GetOk("vnc_port")
vncPasswordRaw, vncPasswordOk := state.GetOk("vnc_password")
2013-12-24 20:12:43 -05:00
if vncIpOk && vncPortOk && vncPasswordOk {
2013-12-24 20:12:43 -05:00
vncIp := vncIpRaw.(string)
2019-03-19 09:47:21 -04:00
vncPort := vncPortRaw.(int)
vncPassword := vncPasswordRaw.(string)
2013-12-24 20:12:43 -05:00
ui.Message(fmt.Sprintf(
"The VM will be run headless, without a GUI. If you want to\n"+
"view the screen of the VM, connect via VNC with the password \"%s\" to\n"+
"vnc://%s:%d", vncPassword, vncIp, vncPort))
2013-12-24 20:12:43 -05:00
} else {
ui.Message("The VM will be run headless, without a GUI, as configured.\n" +
"If the run isn't succeeding as you expect, please enable the GUI\n" +
"to inspect the progress of the build.")
}
}
2013-12-24 20:12:43 -05:00
if err := driver.Start(vmxPath, s.Headless); err != nil {
2013-06-20 00:20:48 -04:00
err := fmt.Errorf("Error starting VM: %s", err)
2013-08-31 15:50:25 -04:00
state.Put("error", err)
2013-06-20 00:20:48 -04:00
ui.Error(err.Error())
2013-06-05 17:49:04 -04:00
return multistep.ActionHalt
}
// 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", vmxPath)
2013-06-05 17:49:04 -04:00
return multistep.ActionContinue
}
2013-12-24 20:12:43 -05:00
func (s *StepRun) Cleanup(state multistep.StateBag) {
driver := state.Get("driver").(Driver)
2013-08-31 15:50:25 -04:00
ui := state.Get("ui").(packer.Ui)
2013-06-05 17:49:04 -04:00
// 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)
2013-12-24 20:12:43 -05:00
waitBootTime := s.DurationBeforeStop
if sinceBootTime < waitBootTime {
2013-06-06 15:19:38 -04:00
sleepTime := waitBootTime - sinceBootTime
2013-12-24 20:12:43 -05:00
ui.Say(fmt.Sprintf(
"Waiting %s to give VMware time to clean up...", sleepTime.String()))
2013-06-06 15:19:38 -04:00
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
}
}
}