Log executed grml-live command line; set $SECONDS to unknown
authorMichael Prokop <devnull@localhost>
Sat, 20 Oct 2007 10:13:20 +0000 (12:13 +0200)
committerMichael Prokop <devnull@localhost>
Sat, 20 Oct 2007 10:13:20 +0000 (12:13 +0200)
debian/changelog
grml-live

index 3523d47..4fd3e69 100644 (file)
@@ -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 <mika@grml.org>  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
index b819850..a9ecab0 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: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 "------------------------------------------------------------------------------"