From: Michael Prokop Date: Wed, 5 Jun 2013 18:40:44 +0000 (+0200) Subject: DEBORPHAN/98-clean-chroot: be more verbose about executed steps X-Git-Tag: v0.21.0~3 X-Git-Url: https://git.grml.org/?p=grml-live.git;a=commitdiff_plain;h=2633dd333a7cae68695eafce7b559d69e52633cd;hp=3d3713c18f91a6268eccd87081806b9cb9f80752;ds=sidebyside DEBORPHAN/98-clean-chroot: be more verbose about executed steps --- diff --git a/etc/grml/fai/config/scripts/DEBORPHAN/98-clean-chroot b/etc/grml/fai/config/scripts/DEBORPHAN/98-clean-chroot index 8c08357..42ed9c2 100755 --- a/etc/grml/fai/config/scripts/DEBORPHAN/98-clean-chroot +++ b/etc/grml/fai/config/scripts/DEBORPHAN/98-clean-chroot @@ -15,10 +15,12 @@ if ! [ -x $target/usr/bin/deborphan ] ; then fi # remove all packages not necessary anymore: +echo "Executing apt-get -y --purge autoremove" $ROOTCMD apt-get -y --purge autoremove # remove packages until deborphan does not find anymore: while [ "$($ROOTCMD deborphan)" != "" ] ; do + echo "Executing deborphan" $ROOTCMD apt-get -y --purge remove $($ROOTCMD deborphan) done @@ -28,6 +30,7 @@ done PURGE_PACKAGES=$($ROOTCMD dpkg --list | awk '/^rc/ {print $2}') if [ -n "$PURGE_PACKAGES" ] ; then + echo "Getting rid of packages which have been removed but not yet purged: $PURGE_PACKAGES" $ROOTCMD dpkg --purge $PURGE_PACKAGES fi