From cdc7ed93df0b186be4069cd03f3f44e60ead583d Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Wed, 11 Dec 2013 10:56:26 +0100 Subject: [PATCH] add timestamps when running initscripts --- system/config_default.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) 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 () { -- 2.43.0