From: Michael Prokop Date: Sun, 25 Nov 2007 19:08:30 +0000 (+0100) Subject: Fix usage of removal of latest FAI logs X-Git-Tag: 0.0.10~6 X-Git-Url: http://git.grml.org/?p=grml-live.git;a=commitdiff_plain;h=50a9468f9d78d6d7461aacef0485c87421c2bb52 Fix usage of removal of latest FAI logs --- diff --git a/grml-live b/grml-live index 8b23f62..c3e8b53 100755 --- a/grml-live +++ b/grml-live @@ -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 25 18:29:07 CET 2007 [mika] +# Latest change: Sun Nov 25 20:08:06 CET 2007 [mika] ################################################################################ # read configuration files, set some misc variables {{{ @@ -68,6 +68,7 @@ bailout() { log "------------------------------------------------------------------------------" exit "$EXIT" } +# trap bailout 1 2 3 6 9 14 15 trap bailout 1 2 3 15 # }}} @@ -90,16 +91,15 @@ fi touch $LOGFILE chown root:adm $LOGFILE chmod 640 $LOGFILE -# clean/zero logfile: +# clean/zero grml-live logfile: if [ -n "$ZERO_LOGFILE" ] ; then echo -n > $LOGFILE fi +# clean/zero/remove old FAI directory: if [ -n "$ZERO_FAI_LOGFILE" ] ; then if [ -d /var/log/fai/"$HOSTNAME" ] ; then - rm -rf /var/log/fai/"$HOSTNAME"/"$(readlink last)" -# rm -rf /var/log/fai/"$HOSTNAME"/"$(readlink last-softupdate)" -# rm -rf /var/log/fai/"$HOSTNAME"/"$(readlink last-dirinstall)" + rm -rf /var/log/fai/"$HOSTNAME"/"$(readlink /var/log/fai/"$HOSTNAME"/last)" fi fi