Remove all files inside /root/ when using class RELEASE
authorMichael Prokop <devnull@localhost>
Mon, 5 Nov 2007 21:37:30 +0000 (22:37 +0100)
committerMichael Prokop <devnull@localhost>
Mon, 5 Nov 2007 21:37:30 +0000 (22:37 +0100)
debian/changelog
etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot

index 798df04..76bb3f6 100644 (file)
@@ -1,3 +1,9 @@
+grml-live (0.0.9) unstable; urgency=low
+
+  * Remove all files inside /root/ when using class RELEASE.
+
+ -- Michael Prokop <mika@grml.org>  Mon, 05 Nov 2007 22:37:11 +0100
+
 grml-live (0.0.8) unstable; urgency=low
 
   * Copy /etc/resolv.conf to chroot in
index 2284637..e8c634c 100755 (executable)
@@ -4,7 +4,7 @@
 # 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: Sun Nov 04 12:11:32 CET 2007 [mika]
+# Latest change: Mon Nov 05 22:37:04 CET 2007 [mika]
 ################################################################################
 
 set -e
@@ -43,9 +43,11 @@ if ifclass GRML_SMALL ; then
    cp $target/etc/runlevel.conf.livecd.small $target/etc/runlevel.conf
 fi
 
-# Remove all FAI logs from chroot via grml-live then:
 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/*
 fi
 
 ## END OF FILE #################################################################