From: Michael Prokop Date: Sat, 20 Oct 2007 10:13:20 +0000 (+0200) Subject: Log executed grml-live command line; set $SECONDS to unknown X-Git-Tag: 0.0.7~58 X-Git-Url: https://git.grml.org/?p=grml-live.git;a=commitdiff_plain;h=fcfb5186a25aec4e921770c7c3bb56efa706dd43 Log executed grml-live command line; set $SECONDS to unknown --- diff --git a/debian/changelog b/debian/changelog index 3523d47..4fd3e69 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +grml-live (0.0.7) unstable; urgency=low + + * Log executed grml-live command line. + * Set $SECONDS to unknown if $start_seconds is not set. + + -- Michael Prokop Sat, 20 Oct 2007 12:12:33 +0200 + grml-live (0.0.6) unstable; urgency=low * New option "-a" for setting architecture. This allows building diff --git a/grml-live b/grml-live index b819850..a9ecab0 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:42:13 CEST 2007 [mika] +# Latest change: Sat Oct 20 12:12:23 CEST 2007 [mika] ################################################################################ # read configuration files, set some misc variables {{{ @@ -219,10 +219,12 @@ if [ -z "$FORCE" ] ; then fi echo - start_seconds=$(cut -d . -f 1 /proc/uptime) - log "------------------------------------------------------------------------------" - log "Starting grml-live run [$(date)]" fi + +start_seconds=$(cut -d . -f 1 /proc/uptime) +log "------------------------------------------------------------------------------" +log "Starting grml-live run [$(date)]" +log "Executed command line: $0 $*" # }}} # on-the-fly configuration {{{ @@ -452,7 +454,7 @@ fi # }}} # finalize {{{ -[ -n "$start_seconds" ] && SECONDS="$[$(cut -d . -f 1 /proc/uptime)-$start_seconds]" +[ -n "$start_seconds" ] && SECONDS="$[$(cut -d . -f 1 /proc/uptime)-$start_seconds]" || SECONDS="unknown" einfo "Sucessfully finished execution of $PN [running ${SECONDS} seconds]" ; eend 0 log "Sucessfully finished execution of $PN [running ${SECONDS} seconds]" log "------------------------------------------------------------------------------"