summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2012-12-20 21:35:43 +0100
committerHolger Levsen <holger@layer-acht.org>2012-12-20 21:35:43 +0100
commita8e76e6cd2e147319d0c51f560898f2c1d263015 (patch)
treed11894223920a12f33ab3decece341d11373ea17 /bin
parent1c8d53ee867f0c9909ac7653d63357c017fe9c80 (diff)
downloadjenkins.debian.net-a8e76e6cd2e147319d0c51f560898f2c1d263015.tar.xz
take vncdo screenshots on numbers which can be divided by 10
Diffstat (limited to 'bin')
-rwxr-xr-xbin/g-i-installation.sh99
1 files changed, 48 insertions, 51 deletions
diff --git a/bin/g-i-installation.sh b/bin/g-i-installation.sh
index 189de748..a543c79a 100755
--- a/bin/g-i-installation.sh
+++ b/bin/g-i-installation.sh
@@ -180,52 +180,48 @@ do_and_report() {
rescue_action() {
# boot in rescue mode
- if [ $TRIGGER_NR -ne 0 ] ; then
- let MY_NR=NR-TRIGGER_NR
- TOKEN=$(printf "%03d" $MY_NR)
- case $TOKEN in
- 010) do_and_report key tab
- ;;
- 020) do_and_report key enter
- ;;
- 110) do_and_report key tab
- ;;
- 120) do_and_report key enter
- ;;
- 170) do_and_report type df
- ;;
- 180) do_and_report key enter
- ;;
- 190) do_and_report type exit
- ;;
- 230) do_and_report key enter
- ;;
- 240) do_and_report key down
- ;;
- 250) do_and_report key enter
- ;;
- *) ;;
- esac
- fi
+ let MY_NR=NR-TRIGGER_NR
+ TOKEN=$(printf "%03d" $MY_NR)
+ case $TOKEN in
+ 010) do_and_report key tab
+ ;;
+ 020) do_and_report key enter
+ ;;
+ 100) do_and_report key tab
+ ;;
+ 110) do_and_report key enter
+ ;;
+ 150) do_and_report type df
+ ;;
+ 160) do_and_report key enter
+ ;;
+ 170) do_and_report type exit
+ ;;
+ 200) do_and_report key enter
+ ;;
+ 210) do_and_report key down
+ ;;
+ 220) do_and_report key enter
+ ;;
+ *) ;;
+ esac
}
normal_action() {
# normal boot after installation
- if [ $TRIGGER_NR -ne 0 ] ; then
- let MY_NR=NR-TRIGGER_NR
- TOKEN=$(printf "%03d" $MY_NR)
- case $TOKEN in
- 010) do_and_report type jenkins
- ;;
- 020) do_and_report key enter
- ;;
- 030) do_and_report type insecure
- ;;
- 040) do_and_report key enter
- ;;
- *) ;;
- esac
- fi
+ let MY_NR=NR-TRIGGER_NR
+ TOKEN=$(printf "%03d" $MY_NR)
+ case $TOKEN in
+ 010) do_and_report type jenkins
+ ;;
+ 020) do_and_report key enter
+ ;;
+ 030) do_and_report type insecure
+ ;;
+ 040) do_and_report key enter
+ ;;
+ *) ;;
+ esac
}
@@ -280,13 +276,15 @@ monitor_system() {
fi
fi
# let's drive this further (once/if triggered)
- case $MODE in
- rescue) rescue_action
- ;;
- normal) normal_action
- ;;
- *) ;;
- esac
+ if [ $TRIGGER_NR -ne 0 ] && [ $TRIGGER_NR -ne $NR ] ; then
+ case $MODE in
+ rescue) rescue_action
+ ;;
+ normal) normal_action
+ ;;
+ *) ;;
+ esac
+ fi
# every 100 screenshots, starting from the 400ths one...
if [ $(($NR % 100)) -eq 0 ] && [ $NR -gt 400 ] ; then
# from help let: "Exit Status: If the last ARG evaluates to 0, let returns 1; let returns 0 otherwise."
@@ -305,8 +303,7 @@ monitor_system() {
# fail next time screenshot matchs
TRIGGERED="true"
# really kick off trigger:
- let TRIGGER_NR=NR-1
- echo $TRIGGER_NR
+ let TRIGGER_NR=NR
fi
fi
fi