From be2bc82f18fb544c5a62b02f6faf2e320e0e881e Mon Sep 17 00:00:00 2001 From: Brad Davis Date: Mon, 9 Aug 2021 10:23:18 -0600 Subject: [PATCH] release: fix copypasta Approved by: gjb MFC after: 1 week X-MFC-With: fd17ea8c1849039c436f7192ca407db70561df03 Sponsored by: Rubicon Communications, LLC ("Netgate") --- release/tools/vmimage.subr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release/tools/vmimage.subr b/release/tools/vmimage.subr index 0e7edb97854..c2b2e21200f 100644 --- a/release/tools/vmimage.subr +++ b/release/tools/vmimage.subr @@ -131,7 +131,7 @@ vm_extra_install_packages() { mount -t devfs devfs ${DESTDIR}/dev chroot ${DESTDIR} ${EMULATOR} env ASSUME_ALWAYS_YES=yes \ /usr/sbin/pkg bootstrap -y - for p in ${ASSUME_ALWAYS_YES}; do + for p in ${VM_EXTRA_PACKAGES}; do chroot ${DESTDIR} ${EMULATOR} env ASSUME_ALWAYS_YES=yes \ /usr/sbin/pkg install -y ${p} done