Improve the way deborphan works in /etc/grml/fai/grml/grml_cleanup_chroot.deborphan...
[grml-live.git] / etc / grml / fai / config / scripts / GRMLBASE / 98-clean-chroot
index b95c792..b5f193e 100755 (executable)
@@ -4,7 +4,7 @@
 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
 # Bug-Reports:   see http://grml.org/bugs/
 # License:       This file is licensed under the GPL v2 or any later version.
-# Latest change: Die Jän 08 09:11:17 CET 2008 [mika]
+# Latest change: Sat Sep 06 20:05:02 CEST 2008 [mika]
 ################################################################################
 
 set -e
@@ -23,6 +23,14 @@ if ! ifclass NO_ONLINE ; then
    rm $target/root/grml_cleanup_chroot.online
 fi
 
+# make sure to drop from grml-small what's unnecessary:
+if ifclass GRML_SMALL ; then
+   $ROOTCMD apt-get -y --purge remove aptitude
+   for pkg in groff-base info locales man-db manpages nano; do
+     $ROOTCMD dpkg --purge $pkg || true
+   done
+fi
+
 # drop unnecessary software:
 if ifclass GRML_SMALL || ifclass DEBORPHAN ; then
    if [ -f /etc/grml/fai/grml/grml_cleanup_chroot.deborphan ] ; then
@@ -32,13 +40,6 @@ if ifclass GRML_SMALL || ifclass DEBORPHAN ; then
    fi
 fi
 
-# make sure to drop from grml-small what's unnecessary:
-if ifclass GRML_SMALL ; then
-   for pkg in groff-base info locales man-db manpages nano; do
-     $ROOTCMD dpkg --purge $pkg || true
-   done
-fi
-
 # remove /usr/share/doc, /usr/share/info,... only in class REMOVE_DOCS:
 # (important: remove them *after* deinstalling packages, otherwise
 # removing packages might fail due to lack of /usr/share/man/...)