Use /var/log/fai/dirinstall/${HOSTNAME}/grml-live.log as logfile
authorMichael Prokop <devnull@localhost>
Wed, 17 Oct 2007 22:43:04 +0000 (00:43 +0200)
committerMichael Prokop <devnull@localhost>
Wed, 17 Oct 2007 22:43:04 +0000 (00:43 +0200)
debian/changelog
grml-live

index ae7fdec..41110eb 100644 (file)
@@ -4,6 +4,9 @@ grml-live (0.0.6) unstable; urgency=low
     grml(32) on amd64.
   * Fix stderr redirection in "/usr/sbin/fai already running..."
   * Update /etc/grml/fai/make-fai-nfsroot.conf
+  * Use /var/log/fai/dirinstall/${HOSTNAME}/grml-live.log as logfile
+    for grml-live instead of /var/log/grml-live.log so it's easier
+    to track.
 
  -- Michael Prokop <mika@grml.org>  Wed, 17 Oct 2007 22:59:08 +0200
 
index a1939cd..b819850 100755 (executable)
--- a/grml-live
+++ b/grml-live
@@ -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: Thu Oct 18 00:18:07 CEST 2007 [mika]
+# Latest change: Thu Oct 18 00:42:13 CEST 2007 [mika]
 ################################################################################
 
 # read configuration files, set some misc variables {{{
@@ -69,8 +69,11 @@ trap bailout 1 2 3 15
 [ -n "$RELEASENAME" ] || RELEASENAME="grml-live rocks"
 [ -n "$GRML_NAME" ] || GRML_NAME='grml'
 
-[ -n "$LOGDIR" ] || LOGDIR="/var/log/"
-LOGFILE="$LOGDIR/grml-live.log"
+if mkdir -p /var/log/fai/dirinstall/${HOSTNAME} ; then
+   LOGFILE=/var/log/fai/dirinstall/${HOSTNAME}/grml-live.log
+else
+   LOGFILE="$LOGDIR/grml-live.log"
+fi
 
 NFSROOT_CONF=/etc/grml/fai/make-fai-nfsroot.conf