Code

These plugins assumed the "use lib util.pm;" would be substituted like standard Perl...
authorThomas Guyot-Sionnest <dermoth@users.sourceforge.net>
Tue, 28 Aug 2007 03:19:45 +0000 (03:19 +0000)
committerThomas Guyot-Sionnest <dermoth@users.sourceforge.net>
Tue, 28 Aug 2007 03:19:45 +0000 (03:19 +0000)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1771 f882894a-f735-0410-b71e-b25c423dba1c

contrib/check_apc_ups.pl
contrib/check_appletalk.pl
contrib/check_linux_raid.pl
contrib/check_snmp_procs.pl

index 74ae229d2516eaa4072a1ad6f5f096539b39fecf..2b6990f7a2ec20d1991aa04c3293a29c3d66a15a 100644 (file)
@@ -13,7 +13,7 @@ use strict;
 use Getopt::Long;
 use vars qw($opt_V $opt_h $opt_H $opt_T $opt_t $opt_R $opt_r 
   $opt_L $opt_l $PROGNAME);
-use lib utils.pm;
+use lib "/usr/local/nagios/libexec";
 use utils qw(%ERRORS &print_revision &support &usage);
 
 sub print_help ();
index 0b7754fec47f41a86c859098ad11a74c85b67df3..6df4c7a1d0708b7dff9ef1cfd79857fe1849bdf0 100644 (file)
@@ -22,7 +22,7 @@ BEGIN {
 }
 
 use strict;
-use lib utils.pm;
+use lib "/usr/local/nagios/libexec";
 
 use utils qw($TIMEOUT %ERRORS &print_revision &support);
 use vars qw($PROGNAME);
index 11bc3cdcacc9cd7c5629b63fa90bcbedc5b09863..da1aff84790fa2e74ae8480aa2f0032834e65a08 100644 (file)
@@ -23,7 +23,7 @@
 #        WARNING md0 status=[UUU_U], recovery=46.4%, finish=123.0min
 
 use strict;
-use lib utils.pm;
+use lib "/usr/local/nagios/libexec";
 use utils qw(%ERRORS);
 
 # die with an error if we're not on Linux
index 678f6d541ce1116feec919262d73ea82e65dd5b4..991fc715b4ed83e1ead86b0671e0c321a2f5e9ea 100644 (file)
@@ -35,7 +35,7 @@
 #use strict;
 use Getopt::Long;
 use Net::SNMP qw (oid_lex_sort oid_base_match SNMP_VERSION_1);
-use lib utils.pm;
+use lib "/usr/local/nagios/libexec";
 use utils qw(%ERRORS &print_revision &support &usage);
 
 my $PROGNAME="check_snmp_procs";