summaryrefslogtreecommitdiffstats
path: root/INF.pm
diff options
context:
space:
mode:
authorroot <root@lamia.panaceas.james.local>2015-06-05 13:25:19 +0100
committerroot <root@lamia.panaceas.james.local>2015-06-05 13:25:19 +0100
commitf573795110f74db407558036699bb124900e5ccd (patch)
treec35a463e698d30f5e716d369c6502d4075e67532 /INF.pm
parent9859c681f2ead3daa03154d93363a3337da10887 (diff)
downloadinf-f573795110f74db407558036699bb124900e5ccd.tar.gz
inf-f573795110f74db407558036699bb124900e5ccd.tar.bz2
inf-f573795110f74db407558036699bb124900e5ccd.zip
add support for HP ilo remote consoles
Diffstat (limited to 'INF.pm')
-rw-r--r--INF.pm4
1 files changed, 4 insertions, 0 deletions
diff --git a/INF.pm b/INF.pm
index d3301f6..46500e4 100644
--- a/INF.pm
+++ b/INF.pm
@@ -1,6 +1,7 @@
package INF;
use INF::APC;
use INF::DSRx020;
+use INF::ILO;
#$infs = [
@@ -30,6 +31,9 @@ sub new ($;$) {
elsif ( $inf->{inf_type} eq 'apc' ) {
return INF::APC->new($inf);
}
+ elsif ( $inf->{inf_type} eq 'ilo' ) {
+ return INF::ILO->new($inf);
+ }
else {
return undef;
}