X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=etc%2Fgrml%2Ffai%2Fconfig%2Fscripts%2FGRMLBASE%2F98-clean-chroot;h=c259003c031fd4e2fbefca8433c5dc30b5021e11;hb=da3354badf10160feb9b4957b203a4c47d43c768;hp=e66fcf78c0f86aa93ae3708f3f1dbff1994aa728;hpb=f9e99174221e1035d0eec78ff68d0c65bdc3fba4;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 e66fcf7..c259003 100755 --- a/etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot +++ b/etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot @@ -1,39 +1,69 @@ #!/bin/sh -# Filename: /etc/grml/fai/config/scripts/GRML/98-clean-chroot +# Filename: /etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot # Purpose: clean up chroot system # 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: Sun Dec 16 20:00:39 CET 2007 [mika] ################################################################################ -set -u set -e -# TODO: use extra files and class names instead of environment variabes +# 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 + +# skip tasks which require only when using class NO_ONLINE: +if ! ifclass NO_ONLINE ; then + cp /etc/grml/fai/grml/grml_cleanup_chroot.online $target/root/ + $ROOTCMD /root/grml_cleanup_chroot.online + rm $target/root/grml_cleanup_chroot.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 -# 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 +# drop unnecessary software: +if ifclass GRML_SMALL || ifclass DEBORPHAN ; then + if [ -f /etc/grml/fai/grml/grml_cleanup_chroot.deborphan ] ; then + cp /etc/grml/fai/grml/grml_cleanup_chroot.deborphan $target/root/ + $ROOTCMD /root/grml_cleanup_chroot.deborphan + rm $target/root/grml_cleanup_chroot.deborphan + fi +fi +# make sure to drop from grml-small what's unnecessary: 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 + $ROOTCMD apt-get -y --purge remove groff-base info \ + locales man-db manpages nano 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 +# misc cleanup: +if [ -f /etc/grml/fai/grml/grml_cleanup_chroot ] ; then + cp /etc/grml/fai/grml/grml_cleanup_chroot $target/root/ + $ROOTCMD /root/grml_cleanup_chroot + rm $target/root/grml_cleanup_chroot +fi + +# 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 -# 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 +if ifclass RELEASE ; then + # Remove all FAI logs from chroot via grml-live later then: + touch $target/etc/grml_fai_release + # Remove all files inside /root/ of chroot: + rm -rf $target/root && mkdir -m 0755 $target/root +fi ## END OF FILE ################################################################# # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=3