Implement -D option to set configuration directory; fai.conf: don't set variables...
[grml-live.git] / etc / grml / fai / config / scripts / DEBORPHAN / 98-clean-chroot
diff --git a/etc/grml/fai/config/scripts/DEBORPHAN/98-clean-chroot b/etc/grml/fai/config/scripts/DEBORPHAN/98-clean-chroot
new file mode 100755 (executable)
index 0000000..a5515f0
--- /dev/null
@@ -0,0 +1,21 @@
+#!/bin/bash
+# Filename:      ${GRML_FAI_CONFIG}/config/scripts/DEBORPHAN/98-clean-chroot
+# Purpose:       drop as many packages from grml as possible
+# Authors:       (c) Michael Prokop <mika@grml.org>
+# Bug-Reports:   see http://grml.org/bugs/
+# License:       This file is licensed under the GPL v2.
+################################################################################
+
+set -u
+set -e
+
+# remove all packages not necessary anymore:
+$ROOTCMD apt-get -y --purge autoremove
+
+# remove packages until deborphan does not find anymore:
+while [ "$($ROOTCMD deborphan)" != "" ] ; do
+  $ROOTCMD apt-get -y --purge remove $(deborphan)
+done
+
+## END OF FILE #################################################################
+# vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=2