lxc-debian: Fix a misleading error message

The wget command above uses the variable `MIRROR` and not
`DEBIAN_MIRROR`...

Signed-off-by: Arnaud Rebillout <arnaudr@debian.org>
This commit is contained in:
Arnaud Rebillout
2026-03-11 23:13:08 +07:00
committed by Arnaud Rebillout
parent e21dc0318b
commit 48b89d884c
+1 -1
View File
@@ -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