From fd6a7976ac53f6e23bb865f483a986f2e4d64f70 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Thu, 18 Oct 2007 00:43:04 +0200 Subject: [PATCH] Use /var/log/fai/dirinstall/${HOSTNAME}/grml-live.log as logfile --- debian/changelog | 3 +++ grml-live | 9 ++++++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index ae7fdec..41110eb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Wed, 17 Oct 2007 22:59:08 +0200 diff --git a/grml-live b/grml-live index a1939cd..b819850 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: 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 -- 2.1.4