Files
Packer-Cn/builder/hyperv/common/step_run.go
T

78 lines
1.8 KiB
Go
Raw Normal View History

2015-06-27 22:36:39 +01:00
package common
import (
2018-01-22 15:32:33 -08:00
"context"
2015-06-27 22:36:39 +01:00
"fmt"
2018-05-10 21:50:56 +10:00
"log"
2018-01-22 15:32:33 -08:00
2018-01-19 16:18:44 -08:00
"github.com/hashicorp/packer/helper/multistep"
2017-04-04 13:39:01 -07:00
"github.com/hashicorp/packer/packer"
2015-06-27 22:36:39 +01:00
)
type StepRun struct {
2018-05-10 21:50:56 +10:00
GuiCancelFunc context.CancelFunc
Headless bool
SwitchName string
2018-05-10 21:50:56 +10:00
vmName string
2015-06-27 22:36:39 +01:00
}
func (s *StepRun) Run(ctx context.Context, state multistep.StateBag) multistep.StepAction {
2015-06-27 22:36:39 +01:00
driver := state.Get("driver").(Driver)
ui := state.Get("ui").(packer.Ui)
vmName := state.Get("vmName").(string)
ui.Say("Determine Host IP for HyperV machine...")
hostIp, err := driver.GetHostAdapterIpAddressForSwitch(s.SwitchName)
if err != nil {
err := fmt.Errorf("Error getting host adapter ip address: %s", err)
state.Put("error", err)
ui.Error(err.Error())
return multistep.ActionHalt
}
ui.Say(fmt.Sprintf("Host IP for the HyperV machine: %s", hostIp))
state.Put("http_ip", hostIp)
if !s.Headless {
ui.Say("Attempting to connect with vmconnect...")
s.GuiCancelFunc, err = driver.Connect(vmName)
if err != nil {
log.Printf(fmt.Sprintf("Non-fatal error starting vmconnect: %s. continuing...", err))
}
}
2015-06-27 22:36:39 +01:00
ui.Say("Starting the virtual machine...")
err = driver.Start(vmName)
2015-06-27 22:36:39 +01:00
if err != nil {
err := fmt.Errorf("Error starting vm: %s", err)
state.Put("error", err)
ui.Error(err.Error())
return multistep.ActionHalt
}
s.vmName = vmName
return multistep.ActionContinue
}
func (s *StepRun) Cleanup(state multistep.StateBag) {
if s.vmName == "" {
return
}
driver := state.Get("driver").(Driver)
ui := state.Get("ui").(packer.Ui)
2018-05-06 07:54:58 +10:00
2018-05-10 21:50:56 +10:00
if !s.Headless && s.GuiCancelFunc != nil {
2018-05-06 07:54:58 +10:00
ui.Say("Disconnecting from vmconnect...")
2018-05-10 21:50:56 +10:00
s.GuiCancelFunc()
2018-05-06 07:54:58 +10:00
}
2015-06-27 22:36:39 +01:00
if running, _ := driver.IsRunning(s.vmName); running {
if err := driver.Stop(s.vmName); err != nil {
ui.Error(fmt.Sprintf("Error shutting down VM: %s", err))
}
}
}