diff options
author | Subhendu Ghosh <sghosh@users.sourceforge.net> | 2002-05-07 05:35:49 +0000 |
---|---|---|
committer | Subhendu Ghosh <sghosh@users.sourceforge.net> | 2002-05-07 05:35:49 +0000 |
commit | d95644521ccd544cbb9a8bfeda927a6b9f6fb01a (patch) | |
tree | e4b0f1fc5d7ff91f23d211adf91f53b2debab74f /plugins-scripts/check_netdns.pl | |
parent | becc0f34e60500798bd15bf5af6e4b8c52707d0a (diff) | |
download | monitoring-plugins-d95644521ccd544cbb9a8bfeda927a6b9f6fb01a.tar.gz |
2nd fix for ePN
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@22 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins-scripts/check_netdns.pl')
-rwxr-xr-x | plugins-scripts/check_netdns.pl | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/plugins-scripts/check_netdns.pl b/plugins-scripts/check_netdns.pl index 65ad7beb..6872b932 100755 --- a/plugins-scripts/check_netdns.pl +++ b/plugins-scripts/check_netdns.pl @@ -6,6 +6,9 @@ # Copyright 2000, virCIO, LLP # # $Log$ +# Revision 1.3 2002/05/07 05:35:49 sghosh +# 2nd fix for ePN +# # Revision 1.2 2002/05/02 16:43:29 sghosh # fix for embedded perl # @@ -25,10 +28,11 @@ use Getopt::Long; use Net::DNS; -use Findbin; -use lib "$FindBin::Bin"; +use lib utils.pm; use utils ; +my $PROGNAME = "check_netdns"; + Getopt::Long::Configure(`bundling`); GetOptions("V" => $opt_V, "version" => $opt_V, "h" => $opt_h, "help" => $opt_h, |