1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
|
#!/bin/bash
# Copyright 2012 Holger Levsen <holger@layer-acht.org>
# released under the GPLv=2
# $1 = vnc-display, each job should have a unique one, so jobs can run in parallel
# $2 = name
# $3 = disksize in GB
# $4 = wget url/jigdo url
if [ "$1" = "" ] || [ "$2" = "" ] || [ "$3" = "" ] || [ "$4" = "" ] ; then
echo "need three params"
echo '# $1 = vnc-display, each job should have a unique one, so jobs can run in parallel'
echo '# $2 = name'
echo '# $3 = disksize in GB'
echo '# $4 = wget url/jigdo url'
exit 1
fi
#
# default settings
#
set -x
set -e
export LC_ALL=C
export MIRROR=http://ftp.de.debian.org/debian
export http_proxy="http://localhost:3128"
export
#
# init
#
DISPLAY=localhost:$1
NAME=$2 # it should be possible to derive $NAME from $JOB_NAME
DISKSIZE_IN_GB=$3
URL=$4
# $5 and $6 are used below for language setting
RAMSIZE=1024
if [ "$(basename $URL)" != "amd64" ] ; then
IMAGE=$(pwd)/$(basename $URL)
IMAGE_MNT="/media/cd-$NAME.iso"
else
KERNEL=linux
INITRD=initrd.gz
fi
#
# define workspace + results
#
rm -rf results
mkdir -p results
WORKSPACE=$(pwd)
RESULTS=$WORKSPACE/results
#
# language
#
if [ -z "$5" ] || [ -z "$6" ] ; then
DI_LANG="en"
DI_LOCALE="en_US"
else
DI_LANG=$5
DI_LOCALE=$6
fi
fetch_if_newer() {
url="$2"
file="$1"
curlopts="-L"
if [ -f "$file" ] ; then
curlopts="$curlopts -z $file"
fi
curl $curlopts -o $file $url
}
cleanup_all() {
set +x
set +e
#
# kill qemu
#
sudo kill -9 $(ps fax | grep [q]emu-system | grep vnc=$DISPLAY 2>/dev/null | awk '{print $1}') || true
sleep 0.3s
rm $WORKSPACE/$NAME.raw
#
# cleanup image mount
#
sudo umount -l $IMAGE_MNT &
cd $RESULTS
echo -n "Last screenshot: "
if [ -f snapshot_000000.ppm ] ; then
ls -t1 snapshot_??????.ppm | tail -1
fi
#
# create video
#
ffmpeg2theora --videobitrate 700 --no-upscaling snapshot_%06d.ppm --framerate 12 --max_size 800x600 -o g-i-installation-$NAME.ogv
rm snapshot_??????.ppm
# rename .bak files back to .ppm
if find . -name "*.ppm.bak" > /dev/null ; then
for i in *.ppm.bak ; do
mv $i $(echo $i | sed -s 's#.ppm.bak#.ppm#')
done
# convert to png (less space and better supported in browsers)
for i in *.ppm ; do
convert $i ${i%.ppm}.png
rm $i
done
fi
}
show_preseed() {
url="$1"
echo "Preseeding from $url:"
echo
curl -s "$url" | grep -v ^# | grep -v "^$"
}
bootstrap_system() {
cd $WORKSPACE
echo "Creating raw disk image with ${DISKSIZE_IN_GB} GiB now."
qemu-img create -f raw $NAME.raw ${DISKSIZE_IN_GB}G
echo "Doing g-i installation test for $NAME now."
# qemu related variables (incl kernel+initrd) - display first, as we grep for this in the process list
QEMU_OPTS="-display vnc=$DISPLAY -no-shutdown"
if [ -n "$IMAGE" ] ; then
QEMU_OPTS="$QEMU_OPTS -cdrom $IMAGE -boot d"
QEMU_KERNEL="--kernel $IMAGE_MNT/install.amd/vmlinuz --initrd $IMAGE_MNT/install.amd/gtk/initrd.gz"
else
QEMU_KERNEL="--kernel $KERNEL --initrd $INITRD"
fi
QEMU_OPTS="$QEMU_OPTS -drive file=$NAME.raw,index=0,media=disk,cache=writeback -m $RAMSIZE -net nic,vlan=0 -net user,vlan=0,host=10.0.2.1,dhcpstart=10.0.2.2,dns=10.0.2.254"
QEMU_WEBSERVER=http://10.0.2.1/
# preseeding related variables
PRESEED_PATH=d-i-preseed-cfgs
PRESEED_URL="url=$QEMU_WEBSERVER/$PRESEED_PATH/${NAME}_preseed.cfg"
INST_LOCALE="locale=$DI_LOCALE"
INST_KEYMAP="keymap=us" # always us!
INST_VIDEO="video=vesa:ywrap,mtrr vga=788"
EXTRA_APPEND=""
case $NAME in
debian*_squeeze*)
INST_KEYMAP="console-keymaps-at/$INST_KEYMAP"
;;
debian-edu_wheezy*)
EXTRA_APPEND="DEBCONF_DEBUG=developer" # FIXME: this shall become more conditional...
;;
*_sid_daily*)
EXTRA_APPEND="mirror/suite=sid"
;;
*) ;;
esac
case $NAME in
debian_*_xfce)
EXTRA_APPEND="$EXTRA_APPEND desktop=xfce"
;;
debian_*_lxde)
EXTRA_APPEND="$EXTRA_APPEND desktop=lxde"
;;
debian_*_kde)
EXTRA_APPEND="$EXTRA_APPEND desktop=kde"
;;
debian_*_rescue*)
EXTRA_APPEND="$EXTRA_APPEND rescue/enable=true"
;;
debian-edu*_combi-server)
QEMU_OPTS="$QEMU_OPTS -net nic,vlan=1 -net user,vlan=1"
EXTRA_APPEND="$EXTRA_APPEND interface=eth0"
;;
*) ;;
esac
case $NAME in
*_dark_theme)
EXTRA_APPEND="$EXTRA_APPEND theme=dark"
;;
*) ;;
esac
APPEND="auto=true priority=critical $EXTRA_APPEND $INST_LOCALE $INST_KEYMAP $PRESEED_URL $INST_VIDEO -- quiet"
show_preseed $(hostname -f)/$PRESEED_PATH/${NAME}_preseed.cfg
echo
echo "Starting QEMU now:"
set -x
(sudo qemu-system-x86_64 \
$QEMU_OPTS \
$QEMU_KERNEL \
--append "$APPEND" && touch $RESULTS/qemu_quit ) &
set +x
}
boot_system() {
cd $WORKSPACE
echo "Booting system installed with g-i installation test for $NAME."
# qemu related variables (incl kernel+initrd) - display first, as we grep for this in the process list
QEMU_OPTS="-display vnc=$DISPLAY -no-shutdown"
QEMU_OPTS="$QEMU_OPTS -drive file=$NAME.raw,index=0,media=disk,cache=writeback -m $RAMSIZE -net nic,vlan=0 -net user,vlan=0,host=10.0.2.1,dhcpstart=10.0.2.2,dns=10.0.2.254"
echo "Checking $NAME.raw:"
FILE=$(file $NAME.raw)
if [ $(echo $FILE | grep "x86 boot sector" | wc -l) -eq 0 ] ; then
echo "ERROR: no x86 boot sector found in $NAME.raw - it's filetype is $FILE."
exit 1
fi
case $NAME in
debian-edu*_combi-server)
QEMU_OPTS="$QEMU_OPTS -net nic,vlan=1 -net user,vlan=1"
;;
*) ;;
esac
echo
echo "Starting QEMU_ now:"
set -x
(sudo qemu-system-x86_64 \
$QEMU_OPTS && touch $RESULTS/qemu_quit ) &
set +x
}
backup_screenshot() {
cp snapshot_${PRINTF_NR}.ppm snapshot_${PRINTF_NR}.ppm.bak
}
do_and_report() {
vncdo -s $DISPLAY $1 "$2"
echo "At $NR sending $1 $2"
backup_screenshot
}
rescue_action() {
# boot in rescue mode
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
let MY_NR=NR-TRIGGER_NR
TOKEN=$(printf "%03d" $MY_NR)
#
# common for all types of install
#
case $TOKEN in
050) do_and_report type jenkins
;;
060) do_and_report key enter
;;
070) do_and_report type insecure
;;
080) do_and_report key enter
;;
*) ;;
esac
#
# actions depending on the type of installation
#
case $NAME in
*xfce) case $TOKEN in
200) do_and_report key enter
;;
210) do_and_report key alt-f2
;;
220) do_and_report type "iceweasel"
;;
230) do_and_report key space
;;
240) do_and_report type "www"
;;
250) do_and_report type "."
;;
260) do_and_report type "debian"
;;
270) do_and_report type "."
;;
280) do_and_report type "org"
;;
290) do_and_report key enter
;;
400) do_and_report key alt-f2
;;
410) do_and_report type xterm
;;
420) do_and_report key enter
;;
430) do_and_report type apt-get
;;
440) do_and_report key space
;;
450) do_and_report type moo
;;
500) do_and_report key enter
;;
510) do_and_report type "su"
;;
520) do_and_report key enter
;;
530) do_and_report type r00tme
;;
540) do_and_report key enter
;;
550) do_and_report type "poweroff"
;;
560) do_and_report key enter
;;
*) ;;
esac
;;
*lxde) case $TOKEN in
200) do_and_report key alt-f2
;;
210) do_and_report type "iceweasel"
;;
230) do_and_report key space
;;
240) do_and_report type "www"
;;
250) do_and_report type "."
;;
260) do_and_report type "debian"
;;
270) do_and_report type "."
;;
280) do_and_report type "org"
;;
290) do_and_report key enter
;;
400) do_and_report key alt-f2
;;
410) do_and_report type lxterminal
;;
420) do_and_report key enter
;;
430) do_and_report type apt-get
;;
440) do_and_report key space
;;
450) do_and_report type moo
;;
520) do_and_report key enter
;;
530) do_and_report type "su"
;;
540) do_and_report key enter
;;
550) do_and_report type r00tme
;;
560) do_and_report key enter
;;
570) do_and_report type "poweroff"
;;
580) do_and_report key enter
;;
*) ;;
esac
;;
*kde) case $TOKEN in
300) do_and_report key tab
;;
310) do_and_report key enter
;;
400) do_and_report key alt-f2
;;
410) do_and_report type "konqueror"
;;
420) do_and_report key space
;;
430) do_and_report type "www"
;;
440) do_and_report type "."
;;
450) do_and_report type "debian"
;;
460) do_and_report type "."
;;
470) do_and_report type "org"
;;
480) do_and_report key enter
;;
600) do_and_report key alt-f2
;;
610) do_and_report type konsole
;;
620) do_and_report key enter
;;
700) do_and_report type apt-get
;;
710) do_and_report key space
;;
720) do_and_report type moo
;;
730) do_and_report key enter
;;
740) do_and_report type "su"
;;
750) do_and_report key enter
;;
760) do_and_report type r00tme
;;
770) do_and_report key enter
;;
780) do_and_report type "poweroff"
;;
790) do_and_report key enter
;;
*) ;;
esac
;;
*gnome) case $TOKEN in
200) do_and_report key alt-f2
;;
210) do_and_report type "iceweasel"
;;
230) do_and_report key space
;;
240) do_and_report type "www"
;;
250) do_and_report type "."
;;
260) do_and_report type "debian"
;;
270) do_and_report type "."
;;
280) do_and_report type "org"
;;
290) do_and_report key enter
;;
400) do_and_report key alt-f2
;;
410) do_and_report type gnome
;;
420) do_and_report type "-"
;;
430) do_and_report type terminal
;;
440) do_and_report key enter
;;
450) do_and_report type apt-get
;;
460) do_and_report key space
;;
470) do_and_report type moo
;;
520) do_and_report key enter
;;
530) do_and_report type "su"
;;
540) do_and_report key enter
;;
550) do_and_report type r00tme
;;
560) do_and_report key enter
;;
570) do_and_report type "poweroff"
;;
580) do_and_report key enter
;;
*) ;;
esac
;;
*) ;;
esac
}
monitor_system() {
MODE=$1
# if TRIGGER_MODE is set to a number, triggered mode will be entered in that many steps - else an image match needs to happen
TRIGGER_MODE=$2
TRIGGER_NR=0
cd $RESULTS
sleep 4
echo "Taking screenshots every 2 seconds now, until qemu ends for whatever reasons or 6h have passed or if the test seems to hang."
echo
let MAX_RUNS=NR+10800
while [ $NR -lt $MAX_RUNS ] ; do
#
# break if qemu-system has finished
#
PRINTF_NR=$(printf "%06d" $NR)
vncsnapshot -quiet -allowblank $DISPLAY snapshot_${PRINTF_NR}.jpg 2>/dev/null || touch $RESULTS/qemu_quit
if [ ! -f "$RESULTS/qemu_quit" ] ; then
convert snapshot_${PRINTF_NR}.jpg snapshot_${PRINTF_NR}.ppm
rm snapshot_${PRINTF_NR}.jpg
else
echo "could not take vncsnapshot, no qemu running on $DISPLAY"
break
fi
# give signal we are still running
if [ $(($NR % 14)) -eq 0 ] ; then
echo "$PRINTF_NR: $(date)"
fi
if [ $(($NR % 100)) -eq 0 ] ; then
# press ctrl-key to avoid screensaver kicking in
vncdo -s $DISPLAY key ctrl
# take a screenshot for later publishing
backup_screenshot
#
# search for known text ocr of screenshot and break out of this loop if certain content is found
#
GOCR=$(mktemp)
gocr snapshot_${PRINTF_NR}.ppm > $GOCR
LAST_LINE=$(tail -1 $GOCR |cut -d "]" -f2- || true)
STACK_LINE=$(egrep "(Call Trace|end trace)" $GOCR || true)
rm $GOCR
if [[ "$LAST_LINE" =~ .*Power\ down.* ]] ; then
echo "QEMU was powered down, continuing."
break
elif [ ! -z "$STACK_LINE" ] ; then
echo "INFO: got a stack-trace, probably on power-down."
break
fi
fi
# every 100 screenshots, starting from the 600ths one...
if [ $(($NR % 100)) -eq 0 ] && [ $NR -gt 600 ] ; then
# from help let: "Exit Status: If the last ARG evaluates to 0, let returns 1; let returns 0 otherwise."
let OLD=NR-600
PRINTF_OLD=$(printf "%06d" $OLD)
# test if this screenshot is basically the same as the one 600 screenshots ago
# 400 pixels difference between to images is tolerated, to ignore updating clocks
PIXEL=$(compare -metric AE snapshot_${PRINTF_NR}.ppm snapshot_${PRINTF_OLD}.ppm /dev/null 2>&1 || true )
# usually this returns an integer, but not always....
if [[ "$PIXEL" =~ ^[0-9]+$ ]] ; then
echo "$PIXEL pixel difference between snapshot_${PRINTF_NR}.ppm and snapshot_${PRINTF_OLD}.ppm"
if [ $PIXEL -lt 400 ] ; then
# unless TRIGGER_MODE is empty, matching images means its over
if [ ! -z "$TRIGGER_MODE" ] ; then
echo "Warning: snapshot_${PRINTF_NR}.ppm snapshot_${PRINTF_OLD}.ppm match, ending installation."
ls -la snapshot_${PRINTF_NR}.ppm snapshot_${PRINTF_OLD}.ppm
figlet "Mode $MODE hangs."
break
else
# this is only reached once in rescue mode
# and the next matching screenshots will cause a failure...
TRIGGER_MODE="already_matched"
# really kick off trigger:
let TRIGGER_NR=NR
fi
fi
else
echo "snapshot_${PRINTF_NR}.ppm and snapshot_${PRINTF_OLD}.ppm have different sizes."
fi
fi
# let's drive this further (once/if triggered)
if [ $TRIGGER_NR -ne 0 ] && [ $TRIGGER_NR -ne $NR ] ; then
case $MODE in
rescue) rescue_action
;;
normal) normal_action
;;
*) ;;
esac
fi
# if TRIGGER_MODE matches NR, we are triggered too
if [ ! -z "$TRIGGER_MODE" ] && [ "$TRIGGER_MODE" = "$NR" ] ; then
let TRIGGER_NR=NR
fi
let NR=NR+1
sleep 2
done
if [ $NR -eq $MAX_RUNS ] ; then
echo "Warning: running for 6h, forcing termination."
fi
if [ -f "$RESULTS/qemu_quit" ] ; then
rm $RESULTS/qemu_quit
fi
if [ ! -f snapshot_${PRINTF_NR}.ppm ] ; then
let NR=NR-1
PRINTF_NR=$(printf "%06d" $NR)
fi
cp snapshot_${PRINTF_NR}.ppm snapshot_${PRINTF_NR}.ppm.bak
}
save_logs() {
#
# get logs and other files from the installed system
#
# remove set +e & -x once the code has proven its good
set -x
cd $WORKSPACE
SYSTEM_MNT=/media/$NAME
sudo mkdir -p $SYSTEM_MNT
# FIXME: bugreport guestmount: -o uid doesnt work:
# "sudo guestmount -o uid=$(id -u) -o gid=$(id -g)" would be nicer, bt it doesnt work: as root, the files seem to belong to jenkins, but as jenkins they cannot be accessed
case $NAME in
debian-edu_*_workstation) sudo guestmount -a $NAME.raw -m /dev/vg_system/root --ro $SYSTEM_MNT || ( echo "Warning: cannot mount /dev/vg_system/root" ; figlet "fail" )
;;
debian-edu_*_combi-server) sudo guestmount -a $NAME.raw -m /dev/vg_system/root --ro $SYSTEM_MNT || ( echo "Warning: cannot mount /dev/vg_system/root" ; figlet "fail" )
sudo guestmount -a $NAME.raw -m /dev/vg_system/var -o nonempty --ro $SYSTEM_MNT/var || ( echo "Warning: cannot mount /dev/vg_system/var" ; figlet "fail" )
sudo guestmount -a $NAME.raw -m /dev/vg_system/usr -o nonempty --ro $SYSTEM_MNT/usr || ( echo "Warning: cannot mount /dev/vg_system/usr" ; figlet "fail" )
;;
debian-edu_*) sudo guestmount -a $NAME.raw -m /dev/vg_system/root --ro $SYSTEM_MNT || ( echo "Warning: cannot mount /dev/vg_system/root" ; figlet "fail" )
sudo guestmount -a $NAME.raw -m /dev/vg_system/var -o nonempty --ro $SYSTEM_MNT/var || ( echo "Warning: cannot mount /dev/vg_system/var" ; figlet "fail" )
;;
*) sudo guestmount -a $NAME.raw -m /dev/debian/root --ro $SYSTEM_MNT || ( echo "Warning: cannot mount /dev/debian/root" ; figlet "fail" )
;;
esac
#
# copy logs (and continue if some logs cannot be copied)
#
set +e
mkdir -p $RESULTS/log
sudo cp -r $SYSTEM_MNT/var/log/installer $SYSTEM_MNT/etc/fstab $RESULTS/log/
sudo chown -R jenkins:jenkins $RESULTS/log/
#
# get list of installed packages
#
sudo chroot $SYSTEM_MNT dpkg -l > $RESULTS/log/dpkg-l || ( echo "Warning: cannot run dpkg inside the installed system." ; sudo ls -la $SYSTEM_MNT ; figlet "fail" )
#
# umount guests
#
sync
case $NAME in
debian-edu_*_workstation) ;;
debian-edu_*_combi-server) sudo umount -l $SYSTEM_MNT/var || ( echo "Warning: cannot un-mount $SYSTEM_MNT/var" ; figlet "fail" )
sudo umount -l $SYSTEM_MNT/usr || ( echo "Warning: cannot un-mount $SYSTEM_MNT/usr" ; figlet "fail" )
;;
debian-edu_*) sudo umount -l $SYSTEM_MNT/var || ( echo "Warning: cannot un-mount $SYSTEM_MNT/var" ; figlet "fail" )
;;
*) ;;
esac
sudo umount -l $SYSTEM_MNT || ( echo "Warning: cannot un-mount $SYSTEM_MNT" ; figlet "fail" )
}
trap cleanup_all INT TERM EXIT
#
# if there is a CD image...
#
if [ ! -z "$IMAGE" ] ; then
fetch_if_newer "$IMAGE" "$URL"
sudo mkdir -p $IMAGE_MNT
grep -q $IMAGE_MNT /proc/mounts && sudo umount -l $IMAGE_MNT
sleep 1
sudo mount -o loop,ro $IMAGE $IMAGE_MNT
else
#
# else netboot gtk
#
fetch_if_newer "$KERNEL" "$URL/$KERNEL"
fetch_if_newer "$INITRD" "$URL/$INITRD"
fi
#
# run g-i
#
NR=0
bootstrap_system
set +x
case $NAME in
*_rescue*) monitor_system rescue
;;
*) monitor_system install wait4match
;;
esac
#
# boot up installed system
#
let NR=NR+1
case $NAME in
*_rescue*) # so there are some artifacts to publish
mkdir -p $RESULTS/log/installer
touch $RESULTS/log/dummy $RESULTS/log/installer/dummy
;;
*) #
# kill qemu and image
#
sudo kill -9 $(ps fax | grep [q]emu-system | grep vnc=$DISPLAY 2>/dev/null | awk '{print $1}') || true
if [ ! -z "$IMAGE" ] ; then
sudo umount -l $IMAGE_MNT || true
fi
echo "Sleeping 15 seconds."
sleep 15
boot_system
let START_TRIGGER=NR+500
monitor_system normal $START_TRIGGER
save_logs
;;
esac
cleanup_all
# don't cleanup twice
trap - INT TERM EXIT
|