Write current date to last output line of grml-live.
authorMichael Prokop <mika@grml.org>
Fri, 13 Nov 2009 21:01:51 +0000 (22:01 +0100)
committerMichael Prokop <mika@grml.org>
Fri, 13 Nov 2009 21:01:51 +0000 (22:01 +0100)
debian/changelog
grml-live

index bb950c6..3a50ae7 100644 (file)
@@ -2,8 +2,10 @@ grml-live (0.9.33) UNRELEASED; urgency=low
 
   * Switch order of mirror configuration in example config.
     Thanks for the hint, formorer.
+  * Write current date to last output line of grml-live so the user
+    knows how "old" his build is while sitting at the shell prompt.
 
- -- Michael Prokop <mika@grml.org>  Fri, 13 Nov 2009 11:06:38 +0100
+ -- Michael Prokop <mika@grml.org>  Fri, 13 Nov 2009 21:48:22 +0100
 
 grml-live (0.9.32) unstable; urgency=low
 
index f5a3453..3d74d29 100755 (executable)
--- a/grml-live
+++ b/grml-live
@@ -1095,8 +1095,8 @@ fi
 
 # finalize {{{
 [ -n "$start_seconds" ] && SECONDS="$[$(cut -d . -f 1 /proc/uptime)-$start_seconds]" || SECONDS="unknown"
-einfo "Successfully finished execution of $PN [running ${SECONDS} seconds]" ; eend 0
-log "Successfully finished execution of $PN [running ${SECONDS} seconds]"
+einfo "Successfully finished execution of $PN [$(date) - running ${SECONDS} seconds]" ; eend 0
+log "Successfully finished execution of $PN [$(date) - running ${SECONDS} seconds]"
 bailout 0
 # }}}