]> xenbits.xensource.com Git - people/iwj/osstest.git/commitdiff
PDU: support for xenuse controlled machines
authorIan Campbell <ian.campbell@citrix.com>
Thu, 5 Sep 2013 11:24:30 +0000 (12:24 +0100)
committerIan Campbell <ian.campbell@citrix.com>
Thu, 5 Sep 2013 11:24:30 +0000 (12:24 +0100)
xenuse is a Citrix internal utility for rebooting machines and accessing their
consoles etc. So this is more of a proof of concept for folks outside our
infrastructure.

Osstest/PDU/xenuse.pm [new file with mode: 0644]

diff --git a/Osstest/PDU/xenuse.pm b/Osstest/PDU/xenuse.pm
new file mode 100644 (file)
index 0000000..82a5999
--- /dev/null
@@ -0,0 +1,59 @@
+# This is part of "osstest", an automated testing framework for Xen.
+# Copyright (C) 2009-2013 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 <http://www.gnu.org/licenses/>.
+
+
+package Osstest::PDU::xenuse;
+
+use strict;
+use warnings;
+
+use Osstest;
+use Osstest::TestSupport;
+use IO::File;
+
+BEGIN {
+    use Exporter ();
+    our ($VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS);
+    $VERSION     = 1.00;
+    @ISA         = qw(Exporter);
+    @EXPORT      = qw();
+    %EXPORT_TAGS = ( );
+
+    @EXPORT_OK   = qw();
+}
+
+our $tty;
+
+sub new {
+    my ($class, $ho) = @_;
+    logm("new xenuse PDU for $ho->{Name}");
+    return bless { Host => $ho }, $class;
+}
+
+sub pdu_power_state {
+    my ($mo, $on) = @_;
+    my $onoff= $on ? "on" : "off";
+
+    if ( $on ) {
+       #XXX this should be conditional
+       system_checked(qw(ipmitool -H), "$mo->{Host}{Name}-mgmt",qw(-U admin -P admin chassis bootdev pxe));
+       system_checked(qw(xenuse --on), "$mo->{Host}{Name}");
+    } else {
+       system_checked(qw(xenuse --off), "$mo->{Host}{Name}");
+    }  
+}
+
+1;