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=629fdeb1d87970cd4d6f6b0fde60b96141d43dd7;hpb=06335ed6cf5e6dad2ba8d056540957a3b3fde8e3;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 629fdeb..c259003 100755 --- a/etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot +++ b/etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot @@ -4,7 +4,7 @@ # 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: Sun Nov 04 12:11:32 CET 2007 [mika] +# Latest change: Sun Dec 16 20:00:39 CET 2007 [mika] ################################################################################ set -e @@ -30,6 +30,21 @@ if ifclass REMOVE_DOCS ; then rm $target/root/grml_cleanup_chroot.remove_docs fi +# 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 + $ROOTCMD apt-get -y --purge remove groff-base info \ + locales man-db manpages nano +fi + # misc cleanup: if [ -f /etc/grml/fai/grml/grml_cleanup_chroot ] ; then cp /etc/grml/fai/grml/grml_cleanup_chroot $target/root/ @@ -43,9 +58,11 @@ if ifclass GRML_SMALL ; then cp $target/etc/runlevel.conf.livecd.small $target/etc/runlevel.conf fi -# Remove all FAI logs from chroot: if ifclass RELEASE ; then - rm -rf $target/var/log/fai/* + # 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 #################################################################