X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=blobdiff_plain;f=chroot-script;h=32f15b263c467f36549482e4320ec6899b3039cc;hp=470a1113d68bb14e32d2c63ac4d29827a784807d;hb=c96402b843bc4300a45155066a4c379928bf9c5f;hpb=5c9bdb3231969bc0660ca53847474fd0628b4f07 diff --git a/chroot-script b/chroot-script index 470a111..32f15b2 100755 --- a/chroot-script +++ b/chroot-script @@ -226,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 }