diff options
author | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2007-08-28 03:19:45 +0000 |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2007-08-28 03:19:45 +0000 |
commit | 29d5acb7c821c8be23b32be9e01b242efad5b872 (patch) | |
tree | 26bd250862fc252c2aa7d9b49dc80b4ac3d6edcc /contrib/check_appletalk.pl | |
parent | da6aa00a83eba3e60b7083ba75d26050ad5b6f01 (diff) | |
download | monitoring-plugins-29d5acb7c821c8be23b32be9e01b242efad5b872.tar.gz |
These plugins assumed the "use lib util.pm;" would be substituted like standard Perl plugins (in plugins-scripts) which isn't the case in contrib. I changed the "use lib" line to use the default path. People using custom paths will have to change it manually.
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1771 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'contrib/check_appletalk.pl')
-rw-r--r-- | contrib/check_appletalk.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/check_appletalk.pl b/contrib/check_appletalk.pl index 0b7754fe..6df4c7a1 100644 --- a/contrib/check_appletalk.pl +++ b/contrib/check_appletalk.pl | |||
@@ -22,7 +22,7 @@ BEGIN { | |||
22 | } | 22 | } |
23 | 23 | ||
24 | use strict; | 24 | use strict; |
25 | use lib utils.pm; | 25 | use lib "/usr/local/nagios/libexec"; |
26 | 26 | ||
27 | use utils qw($TIMEOUT %ERRORS &print_revision &support); | 27 | use utils qw($TIMEOUT %ERRORS &print_revision &support); |
28 | use vars qw($PROGNAME); | 28 | use vars qw($PROGNAME); |