From 44ec223d20bffc1deed7bc64f2755837508f09d6 Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Wed, 11 Mar 2026 14:37:43 +0100 Subject: [PATCH] update ifupdown2 source --- misc/build.func | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/build.func b/misc/build.func index e8884ad79..33de91402 100644 --- a/misc/build.func +++ b/misc/build.func @@ -5038,7 +5038,7 @@ create_lxc_container() { } # Downloads an ARM64 LXC rootfs template to $1. - # Debian: fetches latest release from asylumexp/debian-ifupdown2-lxc on GitHub. + # Debian: fetches latest release from community-scripts/debian-arm64-lxc on GitHub. # Others: fetches from jenkins.linuxcontainers.org. download_arm64_template() { local dest="$1" url @@ -5049,7 +5049,7 @@ create_lxc_container() { } if [[ "$PCT_OSTYPE" == "debian" ]]; then - url=$(curl -fsSL "https://api.github.com/repos/asylumexp/debian-ifupdown2-lxc/releases/latest" | + url=$(curl -fsSL "https://api.github.com/repos/community-scripts/debian-arm64-lxc/releases/latest" | grep -Eo "https://[^\"]*debian-${CUSTOM_TEMPLATE_VARIANT}-arm64-rootfs\.tar\.xz" | head -n1) [[ -n "$url" ]] || { msg_error "Could not find Debian ${CUSTOM_TEMPLATE_VARIANT} ARM64 template URL."