diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-12-21 11:09:50 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-12-21 11:15:48 +0100 |
commit | 27ab8b8e5c9d6cec8cb4ea3f7159837753cc207c (patch) | |
tree | 97fe7c56a82ab0201f8a7f288bc5861f0c655b67 /bin/g-i-installation.sh | |
parent | 0bc5b6953731532fa3b03b60135fed80cdd3fc52 (diff) | |
download | jenkins.debian.net-27ab8b8e5c9d6cec8cb4ea3f7159837753cc207c.tar.xz |
use 'date -u' always
Diffstat (limited to 'bin/g-i-installation.sh')
-rwxr-xr-x | bin/g-i-installation.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/g-i-installation.sh b/bin/g-i-installation.sh index 8c7a9728..7ca10c7f 100755 --- a/bin/g-i-installation.sh +++ b/bin/g-i-installation.sh @@ -152,7 +152,7 @@ cleanup_all() { # # create video # - echo "$(date) - Creating video now. This may take a while.'" + echo "$(date -u) - Creating video now. This may take a while.'" TMPFILE=$(mktemp) avconv -r $FRAMERATE -i snapshot_%06d.png g-i-installation-$NAME.webm > $TMPFILE 2>&1 || cat $TMPFILE rm snapshot_??????.png $TMPFILE @@ -394,7 +394,7 @@ publish_screenshot() { } do_and_report() { - echo "$(date) $PRINTF_NR / $TOKEN - sending '$@'" + echo "$(date -u) $PRINTF_NR / $TOKEN - sending '$@'" # Workaround #758881: vncdo type command sending "e" chars sometimes not # received, sometimes received as if "e" key was kept pressed. if [ "$1" = "type" ]; then @@ -1037,7 +1037,7 @@ monitor_system() { convert $CONVERTOPTS snapshot_${PRINTF_NR}.jpg snapshot_${PRINTF_NR}.png rm snapshot_${PRINTF_NR}.jpg else - echo "$(date) $PRINTF_NR - could not take vncsnapshot from $DISPLAY - using a blank fake one instead" + echo "$(date -u) $PRINTF_NR - could not take vncsnapshot from $DISPLAY - using a blank fake one instead" convert -size $VIDEOSIZE xc:#000000 -depth 8 snapshot_${PRINTF_NR}.png fi # every 100 ticks take a screenshot and analyse it @@ -1088,7 +1088,7 @@ monitor_system() { fi elif [ $(($NR % 30)) -eq 0 ] ; then # give signal we are still running - echo "$(date) $PRINTF_NR / $TOKEN" + echo "$(date -u) $PRINTF_NR / $TOKEN" publish_screenshot fi # in install mode, every 300 ticks preserve an screenshot as artefact |