From 48b89d884c7176b46321b7ecca023df4dd34dad3 Mon Sep 17 00:00:00 2001 From: Arnaud Rebillout Date: Mon, 9 Mar 2026 21:47:47 +0700 Subject: [PATCH] lxc-debian: Fix a misleading error message The wget command above uses the variable `MIRROR` and not `DEBIAN_MIRROR`... Signed-off-by: Arnaud Rebillout --- templates/lxc-debian.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/lxc-debian.in b/templates/lxc-debian.in index 5b2847a..9a6c39e 100644 --- a/templates/lxc-debian.in +++ b/templates/lxc-debian.in @@ -817,7 +817,7 @@ if ! wget -q -O /dev/null "${release_file}"; then fi packages="debian-ports-archive-keyring,${packages}" else - echo "Error: ${arch}/${release} not available on mirror ${DEBIAN_MIRROR}" + echo "Error: ${arch}/${release} not available on mirror ${MIRROR}" exit 1 fi fi