From: Thierry Parmentelat Date: Wed, 11 Dec 2013 09:56:26 +0000 (+0100) Subject: add timestamps when running initscripts X-Git-Tag: tests-5.3-2~60 X-Git-Url: http://git.onelab.eu/?p=tests.git;a=commitdiff_plain;h=cdc7ed93df0b186be4069cd03f3f44e60ead583d add timestamps when running initscripts --- diff --git a/system/config_default.py b/system/config_default.py index f2e3b3b..4a6a9ec 100644 --- a/system/config_default.py +++ b/system/config_default.py @@ -342,16 +342,17 @@ command=$1; shift slicename=$1; shift stamp="the_script_name" stampfile=/tmp/$stamp.stamp +date=$(date) -echo "Running initscript with command=$command and slicename=$slicename" +echo $date "Running initscript with command=$command and slicename=$slicename" function start () { - (echo Starting test initscript: $stamp on slicename $slicename ; date) >> $stampfile - echo "This is the stdout of the sliver $slicename initscript $command (exp. start) pid=$$" - echo "This is the stderr of the sliver $slicename initscript $command (exp. start) pid=$$" 1>&2 + (echo $date Starting test initscript: $stamp on slicename $slicename ; date) >> $stampfile + echo $date "This is the stdout of the sliver $slicename initscript $command (exp. start) pid=$$" + echo $date "This is the stderr of the sliver $slicename initscript $command (exp. start) pid=$$" 1>&2 } function stop () { - echo "Removing stamp $stampfile" + echo $date "Removing stamp $stampfile" rm -f $stampfile } function restart () {