Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion netbsd10/netbsd10.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ source "qemu" "netbsd10" {
iso_url = var.base_image
iso_checksum = "none"
disk_image = true
use_backing_file = true
# Don't use a backing file: the output qcow2 would carry an absolute
# path reference to the build host's anita-work/wd0.qcow2, which won't
# exist on the user's machine. Pay the copy cost so the box is portable.
use_backing_file = false
ssh_username = "root"
ssh_private_key_file = var.ssh_private_key_file
ssh_timeout = "15m"
Expand Down