97032579e0
Integrated Lights-Out out-of-band management system. HP's API is XML-based and cumbersome to use; this module aims to simplify accessing the iLO from Perl while retaining as much functionality as possible. WWW: http://search.cpan.org/dist/Net-ILO/ PR: ports/166615 Submitted by: Tsung-Han Yeh <snowfly@yuntech.edu.tw> Feature safe: yes
17 lines
417 B
Perl
17 lines
417 B
Perl
--- Makefile.PL.orig 2012-04-06 04:48:50.000000000 -0400
|
|
+++ Makefile.PL 2012-04-06 04:51:58.000000000 -0400
|
|
@@ -16,3 +16,14 @@
|
|
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
|
|
clean => { FILES => 'Net-ILO-*' },
|
|
);
|
|
+
|
|
+package MY;
|
|
+
|
|
+sub init_PM {
|
|
+ my $self = shift;
|
|
+
|
|
+ $self->SUPER::init_PM(@_);
|
|
+
|
|
+ # Do not install README.pod
|
|
+ delete $self->{PM}{"README.pod"};
|
|
+}
|