X-Git-Url: http://git.grml.org/?p=grml-live.git;a=blobdiff_plain;f=grml-live;h=c3e8b531c82735adeab7d52283c868f35f2cb530;hp=8b23f62b1fb730804a6b665c636ce5635c8cab26;hb=50a9468f9d78d6d7461aacef0485c87421c2bb52;hpb=c9514b9885f26017a97493419725912e8469ad0c 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