summaryrefslogtreecommitdiffstats
path: root/plugins-scripts/check_ntp.pl
diff options
context:
space:
mode:
authorSubhendu Ghosh <sghosh@users.sourceforge.net>2002-05-07 05:35:49 (GMT)
committerSubhendu Ghosh <sghosh@users.sourceforge.net>2002-05-07 05:35:49 (GMT)
commitd95644521ccd544cbb9a8bfeda927a6b9f6fb01a (patch)
treee4b0f1fc5d7ff91f23d211adf91f53b2debab74f /plugins-scripts/check_ntp.pl
parentbecc0f34e60500798bd15bf5af6e4b8c52707d0a (diff)
downloadmonitoring-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_ntp.pl')
-rwxr-xr-xplugins-scripts/check_ntp.pl7
1 files changed, 4 insertions, 3 deletions
diff --git a/plugins-scripts/check_ntp.pl b/plugins-scripts/check_ntp.pl
index 918ad50..9a58d78 100755
--- a/plugins-scripts/check_ntp.pl
+++ b/plugins-scripts/check_ntp.pl
@@ -47,7 +47,7 @@
47# source. This happens while starting up and if contact 47# source. This happens while starting up and if contact
48# with master has been lost. 48# with master has been lost.
49# 49#
50# Modifed to run under Embedded Perl - patch from Douglas Warner 50# Modifed to run under Embedded Perl
51# 51#
52 52
53 53
@@ -56,10 +56,11 @@ use POSIX;
56use strict; 56use strict;
57use Getopt::Long; 57use Getopt::Long;
58use vars qw($opt_V $opt_h $opt_H $opt_w $opt_c $verbose $PROGNAME); 58use vars qw($opt_V $opt_h $opt_H $opt_w $opt_c $verbose $PROGNAME);
59use FindBin; 59use lib utils.pm ;
60use lib "$FindBin::Bin";
61use utils qw($TIMEOUT %ERRORS &print_revision &support); 60use utils qw($TIMEOUT %ERRORS &print_revision &support);
62 61
62$PROGNAME="check_ntp";
63
63sub print_help (); 64sub print_help ();
64sub print_usage (); 65sub print_usage ();
65 66