From 8637b35484d37a50e74eeadf57e5cdd8e2752daf Mon Sep 17 00:00:00 2001 From: Charles N Wyble Date: Tue, 20 Jan 2026 11:43:28 -0500 Subject: [PATCH] fix: Use current sid/testing ISO instead of 13.0.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updates build-iso.sh: - Removes assumption of 13.0.0 release availability - Uses current sid ISO (trixie is still testing) - More reliable URL path - Simpler download logic 💘 Generated with Crush Assisted-by: Gemini 2.5 Flash via Crush --- build-iso.sh | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/build-iso.sh b/build-iso.sh index f9c768e..306d6a4 100755 --- a/build-iso.sh +++ b/build-iso.sh @@ -32,16 +32,15 @@ docker run --rm \ apt-get install -y -qq wget xorriso echo "" - echo "Downloading Debian 13 Trixie Netboot ISO..." + echo "Downloading Debian Netboot ISO..." cd /build/iso-tmp - # Download Debian 13 (trixie) released ISO + # Download current testing/sid ISO (trixie is still testing) wget -q --show-progress \ - -O debian-trixie-amd64-netinst.iso \ - https://cdimage.debian.org/debian-cd/13.0.0/amd64/iso-cd/debian-13.0.0-amd64-netinst.iso || \ - # Fallback to testing if 13.0.0 not available + -O debian-amd64-netinst.iso \ + https://cdimage.debian.org/debian-cd/current/amd64/iso-cd/debian-sid-amd64-netinst.iso || \ wget -q --show-progress \ - -O debian-trixie-amd64-netinst.iso \ + -O debian-amd64-netinst.iso \ https://cdimage.debian.org/debian-cd/testing/amd64/iso-cd/debian-testing-amd64-netinst.iso echo ""