X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fschroot%2Ffiles%2Fsetup-dchroot;h=1040212ab2864b79396921aec78ca418e8676c2d;hb=4ae07e666690d488976a065388ffa88ee9ae5e23;hp=e727138af7a77559e3244b620ec1be8ca4ddb494;hpb=511a1a430d86e6951142547dd127ff46694ff9fd;p=mirror%2Fdsa-puppet.git diff --git a/modules/schroot/files/setup-dchroot b/modules/schroot/files/setup-dchroot index e727138af..1040212ab 100755 --- a/modules/schroot/files/setup-dchroot +++ b/modules/schroot/files/setup-dchroot @@ -142,7 +142,6 @@ EOF genschrootconf "$suite" "$arch" "$target" "backports" if [ -n "$buildd" ] ; then genschrootconf "$suite" "$arch" "$target" "backports-sloppy" - genschrootconf "$suite" "$arch" "$target" "lts" genschrootconf "$suite" "$arch" "$target" "proposed-updates" genschrootconf "$suite" "$arch" "$target" "security" case "$arch" in @@ -384,6 +383,16 @@ chmod +x "$rootdir/usr/local/sbin/policy-rc.d" [ -z "$bare" ] && [ -z "$ubuntu" ] && chroot "$rootdir" apt-get install -y --no-install-recommends locales-all chroot "$rootdir" apt-get install -y --no-install-recommends build-essential [ -z "$bare" ] && chroot "$rootdir" apt-get install -y --no-install-recommends zsh less vim fakeroot devscripts gdb +if [ -n "$buildd" ] ; then + case "$suite" in + wheezy|jessie|stretch) + chroot "$rootdir" apt-get install -y --no-install-recommends apt-transport-https ca-certificates + ;; + *) + chroot "$rootdir" apt-get install -y --no-install-recommends ca-certificates + ;; + esac +fi rm -f "$rootdir/etc/apt/sources.list" "$rootdir/etc/apt/sources.list.d/*" chroot "$rootdir" apt-get clean umount "$rootdir/dev" 2>/dev/null || true @@ -396,7 +405,7 @@ cleanup+=("rm -f $tartmp") chmod 0755 "$rootdir" tar caf "$tartmp" . if ! [ -z "$keep" ]; then - savelog -l -c 4 "$target" + savelog -l -c 2 "$target" fi mv "$tartmp" "$target" )