Skip to content

Commit b5f943c

Browse files
Fix boot order (#129)
Closes #128 It looks like Parallels 20.2 removed the "net0" as a boot device, therefore settings this fails. Removing this from the boot order command makes packer succeed again.
1 parent 34fe4e3 commit b5f943c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

builder/parallels/iso/step_set_boot_order.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ func (s *stepSetBootOrder) Run(ctx context.Context, state multistep.StateBag) mu
3232
ui.Say("Setting the boot order...")
3333
command := []string{
3434
"set", vmName,
35-
"--device-bootorder", "hdd0 cdrom0 net0",
35+
"--device-bootorder", "hdd0 cdrom0",
3636
}
3737

3838
if err := driver.Prlctl(command...); err != nil {

0 commit comments

Comments
 (0)