1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# Load the Module::Install bundled in ./inc/
use lib '.'; # added since from Perl 5.26 '.' is no more in _æ_ INC
use inc::Module::Install;
##############################################################################
# Define metadata (we read it from the binary)
name 'check_rbl';
version_from 'check_rbl';
##############################################################################
# Specific dependencies
my %prereqs = (
'Data::Validate::Domain' => 0.12,
'Data::Validate::IP' => 0,
'English' => 0,
'Net::DNS' => 0,
'Net::IP' => 0,
'Readonly' => 0,
'IO::Select' => 0,
);
if( eval { require Monitoring::Plugin } ) {
$prereqs{'Monitoring::Plugin'} = 0;
}
else {
$prereqs{'Nagios::Plugin'} = 0;
}
if( eval { require Monitoring::Plugin::Threshold } ) {
$prereqs{'Monitoring::Plugin::Threshold'} = 0;
}
else {
$prereqs{'Nagios::Plugin::Threshold'} = 0;
}
if( eval { require Monitoring::Plugin::Getopt } ) {
$prereqs{'Monitoring::Plugin::Getopt'} = 0;
}
else {
$prereqs{'Nagios::Plugin::Getopt'} = 0;
}
# Net::DNS 1.03 is broken
my $ver = eval { require Net::DNS; $Net::DNS::VERSION };
if (!$ver || $ver eq '1.03') {
warn 'Net::DNS is broken please downgrade until fixed. See https://rt.cpan.org/Ticket/Display.html?id=108745';
$prereqs{'Net::DNS'} = '1.04';
}
install_script 'check_rbl';
auto_install;
tests 't/*.t';
WriteMakefile(
PREREQ_PM => \%prereqs,
INSTALLSCRIPT => '/usr/lib/nagios/plugins/contrib',
INSTALLSITESCRIPT => '/usr/lib/nagios/plugins/contrib',
MAN1PODS => { 'check_rbl.pod' =>'blib/man1/check_rbl.1', },
MAN3PODS => { },
);
|