From: Michael Prokop Date: Fri, 13 Nov 2009 21:01:51 +0000 (+0100) Subject: Write current date to last output line of grml-live. X-Git-Tag: v0.9.33~30 X-Git-Url: https://git.grml.org/?p=grml-live.git;a=commitdiff_plain;h=843d74dcdc22aeb0d6b15082f73345e5b340769d Write current date to last output line of grml-live. --- diff --git a/debian/changelog b/debian/changelog index bb950c6..3a50ae7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Fri, 13 Nov 2009 11:06:38 +0100 + -- Michael Prokop Fri, 13 Nov 2009 21:48:22 +0100 grml-live (0.9.32) unstable; urgency=low diff --git a/grml-live b/grml-live index f5a3453..3d74d29 100755 --- 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 # }}}