X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=blobdiff_plain;f=chroot-script;h=32f15b263c467f36549482e4320ec6899b3039cc;hp=00bcb6b0c4b951a2c6dc163ad4dd6ae7440bf9b9;hb=c96402b843bc4300a45155066a4c379928bf9c5f;hpb=a6c9e87fc2cc55d6a2d5338a428da54d28e15e88 diff --git a/chroot-script b/chroot-script index 00bcb6b..32f15b2 100755 --- a/chroot-script +++ b/chroot-script @@ -61,9 +61,23 @@ chrootmirror() { if [ -n "$ISO" ] ; then echo "deb $ISO $RELEASE $COMPONENTS" > /etc/apt/sources.list [ -n "$MIRROR" ] && echo "deb $MIRROR $RELEASE $COMPONENTS" >> /etc/apt/sources.list || true + # add security.debian.org: + case "$RELEASE" in + unstable|sid) ;; # no security pool available + *) + echo "deb http://security.debian.org ${RELEASE}/updates $COMPONENTS" >> /etc/apt/sources.list + ;; + esac else if [ -n "$MIRROR" ] ; then echo "deb $MIRROR $RELEASE $COMPONENTS" > /etc/apt/sources.list + # add security.debian.org: + case "$RELEASE" in + unstable|sid) ;; # no security pool available + *) + echo "deb http://security.debian.org ${RELEASE}/updates $COMPONENTS" >> /etc/apt/sources.list + ;; + esac fi fi } @@ -212,9 +226,10 @@ kernel() { reconfigure() { if [ -n "$RECONFIGURE" ] ; then for package in $RECONFIGURE ; do - dpkg --list $package 1>/dev/null 2>/dev/null && \ - DEBIAN_FRONTEND=$DEBIAN_FRONTEND dpkg-reconfigure $package || \ - echo "Warning: $package does not exist, can not reconfigure it." + if dpkg --list $package >/dev/null 2>&1 | grep -q '^ii' ; then + DEBIAN_FRONTEND=$DEBIAN_FRONTEND dpkg-reconfigure $package || \ + echo "Warning: $package does not exist, can not reconfigure it." + fi done fi }