summaryrefslogtreecommitdiff
path: root/auto
diff options
context:
space:
mode:
authorJoerg Schirottke <master@kanotix.com>2019-03-29 16:37:22 +0100
committerHolger Paradies <retabell@gmx.de>2019-03-31 12:29:08 +0200
commit3262253e5a80cdd265bf35691c2daaa75c8a20fd (patch)
tree2b2bfca8a57e05904469c8146ce881c93111a210 /auto
parentd31a21a5c79c3792ab407980e5601fd143771f87 (diff)
downloadkanotix-3262253e5a80cdd265bf35691c2daaa75c8a20fd.zip
kanotix-3262253e5a80cdd265bf35691c2daaa75c8a20fd.tar.gz
use debian-archive for wheezy
Diffstat (limited to 'auto')
-rwxr-xr-xauto/config16
1 files changed, 16 insertions, 0 deletions
diff --git a/auto/config b/auto/config
index a854b8c..e8387f4 100755
--- a/auto/config
+++ b/auto/config
@@ -132,3 +132,19 @@ mkdir -p config/chroot_local-includes/usr/local/bin
grep -oe '^[^ #]*' scripts.urls | wget -i- -N -q -P config/chroot_local-includes/usr/local/bin
chmod 755 config/chroot_local-includes/usr/local/bin/*sh || :
+case "$LB_DISTRIBUTION" in
+wheezy)
+ MIRROR_CHROOT=http://ftp.de.debian.org/debian-archive/debian
+ MIRROR_BINARY=http://ftp.de.debian.org/debian-archive/debian
+ MIRROR_CHROOT_SECURITY=http://security.debian.org/
+ MIRROR_BINARY_SECURITY=http://security.debian.org/
+ MIRROR_BOOTSTRAP="$MIRROR_CHROOT"
+ lb config noauto \
+ --mirror-bootstrap ${MIRROR_BOOTSTRAP} \
+ --mirror-chroot ${MIRROR_CHROOT} \
+ --mirror-chroot-security ${MIRROR_CHROOT_SECURITY} \
+ --mirror-binary ${MIRROR_BINARY} \
+ --mirror-binary-security ${MIRROR_BINARY_SECURITY} \
+ --updates false
+ ;;
+esac