diff options
author | Reto Buerki <reet@codelabs.ch> | 2013-01-16 11:54:28 +0100 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2013-01-17 16:55:03 +0100 |
commit | 677795c3e7fe20e1e85138a14854b90e52d7f327 (patch) | |
tree | 4c1797d1b84a1ab692693e327c593fd111e39ce7 | |
parent | c25f8506011d8f578dec8825cd797c4f914edb81 (diff) | |
download | strongswan-677795c3e7fe20e1e85138a14854b90e52d7f327.tar.bz2 strongswan-677795c3e7fe20e1e85138a14854b90e52d7f327.tar.xz |
Make guest ACPI shutdown work
-rwxr-xr-x | testing/scripts/build-baseimage | 4 | ||||
-rwxr-xr-x | testing/stop-testing | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/testing/scripts/build-baseimage b/testing/scripts/build-baseimage index 691cc33e9..1355d7a05 100755 --- a/testing/scripts/build-baseimage +++ b/testing/scripts/build-baseimage @@ -15,8 +15,8 @@ INC=build-essential,gperf,libgmp-dev,libldap2-dev,libcurl4-openssl-dev,ethtool INC=$INC,libxml2-dev,libtspi-dev,libsqlite3-dev,openssh-server,tcpdump,psmisc INC=$INC,openssl,vim,sqlite3,conntrack,gdb,cmake,libxerces-c2-dev,libltdl-dev INC=$INC,liblog4cxx10-dev,libboost-thread-dev,libboost-system-dev,git-core -INC=$INC,less -SERVICES="isc-dhcp-server apache2 slapd" +INC=$INC,less,acpid,acpi-support-base +SERVICES="apache2 dbus isc-dhcp-server slapd" INC=$INC,${SERVICES// /,} EXC=iptables diff --git a/testing/stop-testing b/testing/stop-testing index 013637aca..704ae6667 100755 --- a/testing/stop-testing +++ b/testing/stop-testing @@ -23,7 +23,7 @@ done for host in $STRONGSWANHOSTS do log_action "Guest $host" - execute "virsh destroy $host" + execute "virsh shutdown $host" rm -f $VIRTIMGSTORE/$host.$IMGEXT done |