From: Ian Jackson Date: Tue, 15 Jul 2014 14:18:00 +0000 (+0100) Subject: ts-guest-destroy-hard: New script X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=ac19d08961990197f68ca3d60d6e5635224e748b;p=osstest.git ts-guest-destroy-hard: New script This just calls xl destroy; it doesn't check that the guest is running, or on the network, or anything. (It also doesn't check that the guest is down afterwards.) We are going to want this to be able to destroy the rumpuserxen xenstorels domain, which is short-lived (and will normally have terminated by the time we want to destroy it). Signed-off-by: Ian Jackson Acked-by: Ian Campbell --- v2: Fix copyright date in new script. --- diff --git a/ts-guest-destroy-hard b/ts-guest-destroy-hard new file mode 100755 index 0000000..457ac72 --- /dev/null +++ b/ts-guest-destroy-hard @@ -0,0 +1,27 @@ +#!/usr/bin/perl -w +# This is part of "osstest", an automated testing framework for Xen. +# Copyright (C) 2014 Citrix Inc. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +use strict qw(vars); +use DBI; +use Osstest; +use Osstest::TestSupport; + +tsreadconfig(); + +our ($ho,$gho) = ts_get_host_guest(@ARGV); + +guest_destroy($ho, $gho);