From 2c9d035d48bab44e949a9a5d1601043acb5ed4f0 Mon Sep 17 00:00:00 2001 From: Nate Brown Date: Thu, 7 May 2026 10:05:18 -0500 Subject: [PATCH] Fix netbsd image --- netbsd10/netbsd10.pkr.hcl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/netbsd10/netbsd10.pkr.hcl b/netbsd10/netbsd10.pkr.hcl index 35e9c72..8087302 100644 --- a/netbsd10/netbsd10.pkr.hcl +++ b/netbsd10/netbsd10.pkr.hcl @@ -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"