File: stop-testing

package info (click to toggle)
strongswan 6.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 61,584 kB
  • sloc: ansic: 405,188; sh: 11,621; makefile: 6,254; sql: 2,885; javascript: 1,948; python: 990; xml: 608; perl: 586; cs: 522; lex: 485; yacc: 443; ruby: 398; ada: 114
file content (43 lines) | stat: -rwxr-xr-x 847 bytes parent folder | download | duplicates (4)
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
#!/bin/bash

DIR=$(dirname `readlink -f $0`)
. $DIR/testing.conf
. $DIR/scripts/function.sh

echo "Stopping test environment"

NETWORKS="vnet1 vnet2 vnet3"
KNLTARGET=/var/run/kvm-swan-kernel
HOSTFSTARGET=/var/run/kvm-swan-hostfs
TESTRESULTSTARGET=/var/run/kvm-swan-testresults

[ `id -u` -eq 0 ] || die "You must be root to run $0"

check_commands virsh

for net in $NETWORKS
do
	log_action "Network $net"
	execute "virsh net-destroy $net"
done

for host in $STRONGSWANHOSTS
do
	log_action "Guest $host"

	if running_any $host; then
		execute "virsh shutdown $host"
	else
		echo_warn "...not running"
	fi
	rm -f $VIRTIMGSTORE/$host.$IMGEXT
done

log_action "Removing kernel $KERNEL"
execute "rm $KNLTARGET"

log_action "Removing link to hostfs"
execute "rm $HOSTFSTARGET"

log_action "Removing link to testresults"
execute "rm $TESTRESULTSTARGET"