Skip to content

Commit

Permalink
Fix boot order (#129)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
bjoernhaeuser authored Feb 3, 2025
1 parent 34fe4e3 commit b5f943c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builder/parallels/iso/step_set_boot_order.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func (s *stepSetBootOrder) Run(ctx context.Context, state multistep.StateBag) mu
ui.Say("Setting the boot order...")
command := []string{
"set", vmName,
"--device-bootorder", "hdd0 cdrom0 net0",
"--device-bootorder", "hdd0 cdrom0",
}

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

0 comments on commit b5f943c

Please sign in to comment.