diff options
author | Joerg Schirottke <master@kanotix.com> | 2019-03-29 16:37:22 +0100 |
---|---|---|
committer | Holger Paradies <retabell@gmx.de> | 2019-03-31 12:29:08 +0200 |
commit | 3262253e5a80cdd265bf35691c2daaa75c8a20fd (patch) | |
tree | 2b2bfca8a57e05904469c8146ce881c93111a210 /auto | |
parent | d31a21a5c79c3792ab407980e5601fd143771f87 (diff) | |
download | kanotix-3262253e5a80cdd265bf35691c2daaa75c8a20fd.zip kanotix-3262253e5a80cdd265bf35691c2daaa75c8a20fd.tar.gz |
use debian-archive for wheezy
Diffstat (limited to 'auto')
-rwxr-xr-x | auto/config | 16 |
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 |