X-Git-Url: https://git.grml.org/?p=grml-live.git;a=blobdiff_plain;f=etc%2Fgrml%2Ffai%2Fconfig%2Fscripts%2FGRMLBASE%2F98-clean-chroot;h=46275291170c8f7b9f3faa7d8a5e016bcc34bbfe;hp=bd1ae738d525025e9b30108a5349f15180be80a7;hb=b68164e384f6c7d682212995fc96ab919a2677f0;hpb=f4eee9027ef2775d9e44c80ad4a5761ce0eac7c6 diff --git a/etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot b/etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot index bd1ae73..4627529 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 Dec 09 18:46:19 CET 2007 [mika] +# Latest change: Sun Dec 16 17:37:09 CET 2007 [mika] ################################################################################ set -e @@ -30,6 +30,15 @@ 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 + # misc cleanup: if [ -f /etc/grml/fai/grml/grml_cleanup_chroot ] ; then cp /etc/grml/fai/grml/grml_cleanup_chroot $target/root/ @@ -47,7 +56,7 @@ 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/.* $target/root/* || /bin/true + rm -rf $target/root && mkdir -m 0755 $target/root fi ## END OF FILE #################################################################