From 449decc4769bc16b0943923cfba1e53811d5333b Mon Sep 17 00:00:00 2001 From: John Kristensen Date: Mon, 26 Aug 2019 17:23:17 +1000 Subject: [PATCH] Use deb.debian.org The httpredir.debian.org service has been dropped in favour of deb.debian.org ref: https://lists.debian.org/debian-mirrors/2017/02/msg00000.html --- mkimage | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkimage b/mkimage index 844ca20..9bc864b 100755 --- a/mkimage +++ b/mkimage @@ -40,7 +40,7 @@ echo "Building base in $rootfsDir" DEBOOTSTRAP_DIR=$DEBOOTSTRAP_DIR debootstrap --keyring $KEYRING --variant container --foreign ${DIST} "$rootfsDir" chroot "$rootfsDir" bash debootstrap/debootstrap --second-stage -echo -e "deb http://httpredir.debian.org/debian $DIST main" > "$rootfsDir/etc/apt/sources.list" +echo -e "deb http://deb.debian.org/debian $DIST main" > "$rootfsDir/etc/apt/sources.list" if [ "$DIST" != "unstable" ]; then echo "deb http://security.debian.org/ $DIST/updates main" >> "$rootfsDir/etc/apt/sources.list" fi