X-Git-Url: http://git.grml.org/?p=grml-live.git;a=blobdiff_plain;f=grml-live;h=171457ff581e135bb83c8222e259c239b2bf44fa;hp=f4f299e49479f142f7d142dce92d1f07fa4a6e3c;hb=cebf5e26632f0b5669b212fae8c44874865bbb02;hpb=33aac1f44e84fa85f3237f9b54f590ce232e207b diff --git a/grml-live b/grml-live index f4f299e..171457f 100755 --- a/grml-live +++ b/grml-live @@ -71,12 +71,8 @@ trap bailout 1 2 3 15 [ -n "$RELEASENAME" ] || RELEASENAME="grml-live rocks" [ -n "$GRML_NAME" ] || GRML_NAME='grml' -[ -d /var/log/fai/dirinstall/"${HOSTNAME}" ] || mkdir -p /var/log/fai/dirinstall/${HOSTNAME} -if [ -d /var/log/fai/dirinstall/"${HOSTNAME}" ] ; then - LOGFILE=/var/log/fai/dirinstall/${HOSTNAME}/grml-live.log -else - LOGFILE="$LOGDIR/grml-live.log" -fi +[ -d /var/log/grml-live ] || mkdir /var/log/grml-live +LOGFILE=/var/log/grml-live/"$(date +%Y-%m-%d)_$$.log" NFSROOT_CONF=/etc/grml/fai/make-fai-nfsroot.conf @@ -212,6 +208,7 @@ if [ -z "$FORCE" ] ; then [ -n "$TEMPLATE_DIRECTORY" ] && echo " Template files: $TEMPLATE_DIRECTORY" [ -n "$FAI_ARGS" ] && echo " additional arguments for FAI: $FAI_ARGS" [ -n "$VERBOSE" ] && echo " Using VERBOSE mode." + [ -n "$LOGFILE" ] && echo " Logging to file: $LOGFILE" echo echo -n "Is this ok for you? [y/N] " read a @@ -225,6 +222,8 @@ start_seconds=$(cut -d . -f 1 /proc/uptime) log "------------------------------------------------------------------------------" log "Starting grml-live [${GRML_LIVE_VERSION}] run [$(date)]" log "Executed command line: $0 $@" + +einfo "Logging actions to logfile $LOGFILE" # }}} # on-the-fly configuration {{{ @@ -253,6 +252,11 @@ if [ -n "$SUITE" ] ; then DIST="\|\ etch\ \|\ stable\ \|\ lenny\ \|\ testing\ \|\ sid\ \|\ unstable\ " sed -i "s/\(deb .\+\)\([ \t]+\)$DIST\([ \t]+\)\(main \)/\1\2 $SUITE \3\4/" $LIVE_CONF sed -i "s/\(deb .\+\)\([ \t]+\)$DIST\([ \t]+\)\(main \)/\1\2 $SUITE \3\4/" /etc/grml/fai/apt/sources.list + # notice: activate grml-live pool only if we are building against unstable: + if grep -qe unstable -qe sid /etc/grml/fai/apt/sources.list ; then + grep grml-stable /etc/grml/fai/apt/sources.list | \ + sed 's/grml-stable/grml-live/' >> /etc/grml/fai/apt/sources.list + fi sed -i "s|FAI_DEBOOTSTRAP=\"[a-z]* |FAI_DEBOOTSTRAP=\"$SUITE |" $LIVE_CONF sed -i "s|FAI_DEBOOTSTRAP=\"[a-z]* |FAI_DEBOOTSTRAP=\"$SUITE |" $NFSROOT_CONF