Remove /var/log/fai/* in class RELEASE
authorMichael Prokop <devnull@localhost>
Sun, 4 Nov 2007 10:29:26 +0000 (11:29 +0100)
committerMichael Prokop <devnull@localhost>
Sun, 4 Nov 2007 10:29:26 +0000 (11:29 +0100)
debian/changelog
etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot

index ee21d4e..f8b7fa1 100644 (file)
@@ -9,6 +9,7 @@ grml-live (0.0.8) unstable; urgency=low
     the process.)
   * Set EXITSTATUS in /etc/policy-rc.d.conf of chroot to 101 for
     softupdate action.
+  * Remove /var/log/fai/* in class RELEASE.
 
  -- Michael Prokop <mika@grml.org>  Sun, 04 Nov 2007 01:43:06 +0100
 
index 7642950..0fdb18d 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: Wed Sep 19 13:51:05 CEST 2007 [mika]
+# Latest change: Sun Nov 04 11:29:07 CET 2007 [mika]
 ################################################################################
 
 set -e
@@ -43,5 +43,10 @@ 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/*
+fi
+
 ## END OF FILE #################################################################
 # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=3