From 61dca7acb1c11225ccdddc222f69e060b5263557 Mon Sep 17 00:00:00 2001 From: Clint Branham Date: Wed, 25 Mar 2026 15:05:24 -0500 Subject: [PATCH] chore: add apt-get upgrade to first-boot script Ensures nested PVE nodes are fully patched before integration tests run. Adds ~5-10min to first provision but gives more realistic test results against current PVE releases. Co-Authored-By: Claude Opus 4.6 (1M context) --- tests/infrastructure/scripts/first-boot.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/infrastructure/scripts/first-boot.sh b/tests/infrastructure/scripts/first-boot.sh index 2083737..020d970 100755 --- a/tests/infrastructure/scripts/first-boot.sh +++ b/tests/infrastructure/scripts/first-boot.sh @@ -19,6 +19,7 @@ fi echo "deb http://download.proxmox.com/debian/pve ${SUITE} pve-no-subscription" > /etc/apt/sources.list.d/pve-no-subscription.list apt-get update -qq +apt-get upgrade -y -qq apt-get install -y -qq qemu-guest-agent open-iscsi systemctl start qemu-guest-agent systemctl enable open-iscsi