Merge pull request #1605 from legal90/parallels-disable-cdrom

builder/parallels: Default cdrom0 should be disconnected
This commit is contained in:
Mitchell Hashimoto 2014-10-27 16:47:20 -07:00
commit 4bc578a029
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ func (s *stepAttachISO) Cleanup(state multistep.StateBag) {
log.Println("Enabling default CD/DVD drive...")
command := []string{
"set", vmName,
"--device-set", "cdrom0", "--enable",
"--device-set", "cdrom0", "--enable", "--disconnect",
}
if err := driver.Prlctl(command...); err != nil {