82 lines
2.1 KiB
Go
82 lines
2.1 KiB
Go
package iso
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
vboxcommon "github.com/hashicorp/packer/builder/virtualbox/common"
|
|
"github.com/hashicorp/packer/helper/multistep"
|
|
"github.com/hashicorp/packer/packer"
|
|
)
|
|
|
|
// This step creates the actual virtual machine.
|
|
//
|
|
// Produces:
|
|
// vmName string - The name of the VM
|
|
type stepCreateVM struct {
|
|
vmName string
|
|
}
|
|
|
|
func (s *stepCreateVM) Run(_ context.Context, state multistep.StateBag) multistep.StepAction {
|
|
config := state.Get("config").(*Config)
|
|
driver := state.Get("driver").(vboxcommon.Driver)
|
|
ui := state.Get("ui").(packer.Ui)
|
|
|
|
name := config.VMName
|
|
|
|
commands := make([][]string, 4)
|
|
commands[0] = []string{
|
|
"createvm", "--name", name,
|
|
"--ostype", config.GuestOSType, "--register",
|
|
}
|
|
commands[1] = []string{
|
|
"modifyvm", name,
|
|
"--boot1", "disk", "--boot2", "dvd", "--boot3", "none", "--boot4", "none",
|
|
}
|
|
commands[2] = []string{"modifyvm", name, "--cpus", "1"}
|
|
commands[3] = []string{"modifyvm", name, "--memory", "512"}
|
|
|
|
ui.Say("Creating virtual machine...")
|
|
for _, command := range commands {
|
|
err := driver.VBoxManage(command...)
|
|
if err != nil {
|
|
err := fmt.Errorf("Error creating VM: %s", err)
|
|
state.Put("error", err)
|
|
ui.Error(err.Error())
|
|
return multistep.ActionHalt
|
|
}
|
|
|
|
// Set the VM name property on the first command
|
|
if s.vmName == "" {
|
|
s.vmName = name
|
|
}
|
|
}
|
|
|
|
// Set the final name in the state bag so others can use it
|
|
state.Put("vmName", s.vmName)
|
|
|
|
return multistep.ActionContinue
|
|
}
|
|
|
|
func (s *stepCreateVM) Cleanup(state multistep.StateBag) {
|
|
if s.vmName == "" {
|
|
return
|
|
}
|
|
|
|
driver := state.Get("driver").(vboxcommon.Driver)
|
|
ui := state.Get("ui").(packer.Ui)
|
|
config := state.Get("config").(*Config)
|
|
|
|
_, cancelled := state.GetOk(multistep.StateCancelled)
|
|
_, halted := state.GetOk(multistep.StateHalted)
|
|
if (config.KeepRegistered) && (!cancelled && !halted) {
|
|
ui.Say("Keeping virtual machine registered with VirtualBox host (keep_registered = true)")
|
|
return
|
|
}
|
|
|
|
ui.Say("Deregistering and deleting VM...")
|
|
if err := driver.Delete(s.vmName); err != nil {
|
|
ui.Error(fmt.Sprintf("Error deleting VM: %s", err))
|
|
}
|
|
}
|