X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=etc%2Fgrml%2Ffai%2Fconfig%2Fscripts%2FGRMLBASE%2F98-clean-chroot;h=88fd997755035837ce116dd237ee48bf116046fc;hb=aadaee58928e09263952ff90543024c65d426e4f;hp=02665f6b63d7ed9f847e591745204c971945ddec;hpb=7280b17f3796971162b0da54e0a5d5d43878f394;p=grml-live.git diff --git a/etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot b/etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot index 02665f6..88fd997 100755 --- a/etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot +++ b/etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot @@ -4,22 +4,43 @@ # Authors: grml-team (grml.org), (c) Michael Prokop # 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:36:13 CEST 2007 [mika] +# Latest change: Wed Sep 19 13:42:19 CEST 2007 [mika] ################################################################################ -set -u set -e +set -u + +# remove some big directories when using class LATEX_CLEANUP: +if ifclass LATEX_CLEANUP ; then + cp /etc/grml/fai/grml/grml_cleanup_chroot.latex_cleanup $target/root/ + $ROOTCMD /root/grml_cleanup_chroot.latex_cleanup + rm $target/root/grml_cleanup_chroot.latex_cleanup +fi -# 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-*) -# NOONLINE: disable functions that require working network setup -# FAST: skip some longer tasks -# REMOVE_DOCS: rm -rf /usr/share/doc + /usr/share/info +# skip tasks which require only when using class NO_ONLINE: +if ! ifclass NO_ONLINE ; then + cp /etc/grml/fai/grml/grml_cleanup_chroot.no_online $target/root/ + $ROOTCMD /root/grml_cleanup_chroot.no_online + rm $target/root/grml_cleanup_chroot.no_online +fi +# remove /usr/share/doc, /usr/share/info,... only in class REMOVE_DOCS: +if ifclass REMOVE_DOCS: ; then + cp /etc/grml/fai/grml/grml_cleanup_chroot.remove_docs $target/root/ + $ROOTCMD /root/grml_cleanup_chroot.remove_docs + rm $target/root/grml_cleanup_chroot.remove_docs +fi + +# misc cleanup: cp /etc/grml/fai/grml/grml_cleanup_chroot $target/root/ -$ROOTCMD sh -c "NOCOLORS=1 /root/grml_cleanup_chroot" +$ROOTCMD /root/grml_cleanup_chroot rm $target/root/grml_cleanup_chroot +# make sure GRML_SMALL uses the appropriate configuration: +if ifclass GRML_SMALL ; then + cp $target/etc/inittab.small $target/etc/inittab + cp $target/etc/runlevel.conf.livecd.small $target/etc/runlevel.conf +fi + ## END OF FILE ################################################################# # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=3