mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-24 18:30:41 -05:00
builder/parallels: Ignore 'The fdd0 device does not exist'
A current floppy disk probably doesn't exist, so the build shouldn't fail when we try to delete it.
This commit is contained in:
parent
5e4ffb56d0
commit
cf6532ffe2
1 changed files with 3 additions and 4 deletions
|
|
@ -39,11 +39,10 @@ func (s *StepAttachFloppy) Run(state multistep.StateBag) multistep.StepAction {
|
|||
"set", vmName,
|
||||
"--device-del", "fdd0",
|
||||
}
|
||||
if err := driver.Prlctl(del_command...); err != nil {
|
||||
state.Put("error", fmt.Errorf("Error deleting floppy: %s", err))
|
||||
}
|
||||
ui.Say("Attaching floppy disk...")
|
||||
// This will almost certainly fail with 'The fdd0 device does not exist.'
|
||||
driver.Prlctl(del_command...)
|
||||
|
||||
ui.Say("Attaching floppy disk...")
|
||||
// Attaching the floppy disk
|
||||
add_command := []string{
|
||||
"set", vmName,
|
||||
|
|
|
|||
Loading…
Reference in a new issue