Unify classes
[grml-live.git] / etc / grml / fai / config / scripts / GRMLBASE / 98-clean-chroot
index 9aac395..e66fcf7 100755 (executable)
@@ -4,12 +4,14 @@
 # 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: Mon Sep 17 17:02:43 CEST 2007 [mika]
+# Latest change: Mon Sep 17 17:36:13 CEST 2007 [mika]
 ################################################################################
 
 set -u
 set -e
 
+# TODO: use extra files and class names instead of environment variabes
+
 # supported environment variables for grml_cleanup_chroot:
 #   NOCOLORS: if set it disables colors in (debugging) output
 #   LATEX_CLEANUP: remove some big directories of texlive (/usr/share/doc/texlive-*)
@@ -17,6 +19,18 @@ set -e
 #   FAST: skip some longer tasks
 #   REMOVE_DOCS: rm -rf /usr/share/doc + /usr/share/info
 
+if ifclass GRML_SMALL ; then
+   cp /etc/grml/fai/grml/grml_cleanup_chroot.small $target/root/
+   $ROOTCMD sh -c "NOCOLORS=1 /root/grml_cleanup_chroot.small"
+   rm $target/root/grml_cleanup_chroot.small
+fi
+
+if ifclass REMOVE_DOCS ; then
+   $ROOTCMD sh -c "NOCOLORS=1 REMOVE_DOCS=1 /root/grml_cleanup_chroot.small"
+   rm $target/root/grml_cleanup_chroot.small
+fi
+
+# final cleanup
 cp /etc/grml/fai/grml/grml_cleanup_chroot $target/root/
 $ROOTCMD sh -c "NOCOLORS=1 /root/grml_cleanup_chroot"
 rm $target/root/grml_cleanup_chroot