package common import ( "fmt" "github.com/mitchellh/multistep" "github.com/mitchellh/packer/packer" "log" ) // This step attaches the Parallels Tools as a inserted CD onto // the virtual machine. // // Uses: // driver Driver // toolsPath string // ui packer.Ui // vmName string // // Produces: type StepAttachParallelsTools struct { ParallelsToolsHostPath string ParallelsToolsMode string } func (s *StepAttachParallelsTools) Run(state multistep.StateBag) multistep.StepAction { driver := state.Get("driver").(Driver) ui := state.Get("ui").(packer.Ui) vmName := state.Get("vmName").(string) // If we're not attaching the guest additions then just return if s.ParallelsToolsMode != ParallelsToolsModeAttach { log.Println("Not attaching parallels tools since we're uploading.") return multistep.ActionContinue } // Attach the guest additions to the computer log.Println("Attaching Parallels Tools ISO onto IDE controller...") command := []string{ "set", vmName, "--device-add", "cdrom", "--image", s.ParallelsToolsHostPath, } if err := driver.Prlctl(command...); err != nil { err := fmt.Errorf("Error attaching Parallels Tools: %s", err) state.Put("error", err) ui.Error(err.Error()) return multistep.ActionHalt } // Set some state so we know to remove state.Put("attachedToolsIso", true) return multistep.ActionContinue } func (s *StepAttachParallelsTools) Cleanup(state multistep.StateBag) {}