77 lines
2.1 KiB
Go
77 lines
2.1 KiB
Go
package common
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
|
|
"github.com/mitchellh/multistep"
|
|
"github.com/mitchellh/packer/packer"
|
|
)
|
|
|
|
type StepStartVmPaused struct{}
|
|
|
|
func (self *StepStartVmPaused) Run(state multistep.StateBag) multistep.StepAction {
|
|
|
|
c := state.Get("client").(*Connection)
|
|
ui := state.Get("ui").(packer.Ui)
|
|
|
|
ui.Say("Step: Start VM Paused")
|
|
|
|
uuid := state.Get("instance_uuid").(string)
|
|
instance, err := c.client.VM.GetByUUID(c.session, uuid)
|
|
if err != nil {
|
|
ui.Error(fmt.Sprintf("Unable to get VM from UUID '%s': %s", uuid, err.Error()))
|
|
return multistep.ActionHalt
|
|
}
|
|
|
|
// note that here "cd" means boot from hard drive ('c') first, then CDROM ('d')
|
|
err = c.client.VM.SetHVMBootPolicy(c.session, instance, "BIOS order")
|
|
|
|
if err != nil {
|
|
ui.Error(fmt.Sprintf("Unable to set HVM boot params: %s", err.Error()))
|
|
return multistep.ActionHalt
|
|
}
|
|
|
|
err = c.client.VM.SetHVMBootParams(c.session, instance, map[string]string{"order": "cd"})
|
|
if err != nil {
|
|
ui.Error(fmt.Sprintf("Unable to set HVM boot params: %s", err.Error()))
|
|
return multistep.ActionHalt
|
|
}
|
|
|
|
err = c.client.VM.Start(c.session, instance, true, false)
|
|
if err != nil {
|
|
ui.Error(fmt.Sprintf("Unable to start VM with UUID '%s': %s", uuid, err.Error()))
|
|
return multistep.ActionHalt
|
|
}
|
|
|
|
domid, err := c.client.VM.GetDomid(c.session, instance)
|
|
if err != nil {
|
|
ui.Error(fmt.Sprintf("Unable to get domid of VM with UUID '%s': %s", uuid, err.Error()))
|
|
return multistep.ActionHalt
|
|
}
|
|
state.Put("domid", domid)
|
|
|
|
return multistep.ActionContinue
|
|
}
|
|
|
|
func (self *StepStartVmPaused) Cleanup(state multistep.StateBag) {
|
|
config := state.Get("commonconfig").(CommonConfig)
|
|
c := state.Get("client").(*Connection)
|
|
|
|
if config.ShouldKeepVM(state) {
|
|
return
|
|
}
|
|
|
|
uuid := state.Get("instance_uuid").(string)
|
|
instance, err := c.client.VM.GetByUUID(c.session, uuid)
|
|
if err != nil {
|
|
log.Printf(fmt.Sprintf("Unable to get VM from UUID '%s': %s", uuid, err.Error()))
|
|
return
|
|
}
|
|
|
|
err = c.client.VM.HardShutdown(c.session, instance)
|
|
if err != nil {
|
|
log.Printf(fmt.Sprintf("Unable to force shutdown VM '%s': %s", uuid, err.Error()))
|
|
}
|
|
}
|