DEBORPHAN/98-clean-chroot: be more verbose about executed steps
[grml-live.git] / etc / grml / fai / config / scripts / DEBORPHAN / 98-clean-chroot
index 68136ea..42ed9c2 100755 (executable)
@@ -14,17 +14,13 @@ if ! [ -x $target/usr/bin/deborphan ] ; then
   exit 0
 fi
 
   exit 0
 fi
 
-# avoid file-rc being considered for removal by deborphan
-if [ -d $target/usr/share/file-rc -a -x $target/usr/bin/deborphan ] ; then
-  echo "Adding file-rc to keep-list of deborphan to avoid accidental removal"
-  $ROOTCMD deborphan --add-keep file-rc || /bin/true
-fi
-
 # remove all packages not necessary anymore:
 # 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
 $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
 
   $ROOTCMD apt-get -y --purge remove $($ROOTCMD deborphan)
 done
 
@@ -34,6 +30,7 @@ done
 PURGE_PACKAGES=$($ROOTCMD dpkg --list | awk '/^rc/ {print $2}')
 
 if [ -n "$PURGE_PACKAGES" ] ; then
 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
 
   $ROOTCMD dpkg --purge $PURGE_PACKAGES
 fi