summaryrefslogtreecommitdiffstats
path: root/plugins-scripts/check_ircd.pl
diff options
context:
space:
mode:
authorSubhendu Ghosh <sghosh@users.sourceforge.net>2002-05-02 16:43:29 (GMT)
committerSubhendu Ghosh <sghosh@users.sourceforge.net>2002-05-02 16:43:29 (GMT)
commitbecc0f34e60500798bd15bf5af6e4b8c52707d0a (patch)
treec117e73085955568f57d4eb89f41640297796977 /plugins-scripts/check_ircd.pl
parentbbcaeb1db1666c606a3578d3d24f1618f8c9947c (diff)
downloadmonitoring-plugins-becc0f34e60500798bd15bf5af6e4b8c52707d0a.tar.gz
fix for embedded perl
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@21 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins-scripts/check_ircd.pl')
-rwxr-xr-xplugins-scripts/check_ircd.pl12
1 files changed, 3 insertions, 9 deletions
diff --git a/plugins-scripts/check_ircd.pl b/plugins-scripts/check_ircd.pl
index e4c4bd0..098a8e7 100755
--- a/plugins-scripts/check_ircd.pl
+++ b/plugins-scripts/check_ircd.pl
@@ -38,15 +38,8 @@
38# with perl -wT and 'use strict' 38# with perl -wT and 'use strict'
39# 39#
40# test using check_ircd.pl (irc-2.mit.edu|irc.erols.com|irc.core.com) 40# test using check_ircd.pl (irc-2.mit.edu|irc.erols.com|irc.core.com)
41# 2002/05/02 SG Fixed for Embedded Perl
41# 42#
42# ------------------------------------------------------------------[ Begin ]--
43
44BEGIN {
45 if ($0 =~ m/^(.*?)[\/\\]([^\/\\]+)$/) {
46 $runtimedir = $1;
47 $PROGNAME = $2;
48 }
49}
50 43
51# ----------------------------------------------------------------[ Require ]-- 44# ----------------------------------------------------------------[ Require ]--
52 45
@@ -59,7 +52,8 @@ use strict;
59use Getopt::Long; 52use Getopt::Long;
60use vars qw($opt_V $opt_h $opt_t $opt_p $opt_H $opt_w $opt_c $verbose); 53use vars qw($opt_V $opt_h $opt_t $opt_p $opt_H $opt_w $opt_c $verbose);
61use vars qw($PROGNAME); 54use vars qw($PROGNAME);
62use lib $main::runtimedir; 55use FindBin;
56use lib "$FindBin::Bin";
63use utils qw($TIMEOUT %ERRORS &print_revision &support &usage); 57use utils qw($TIMEOUT %ERRORS &print_revision &support &usage);
64 58
65# ----------------------------------------------------[ Function Prototypes ]-- 59# ----------------------------------------------------[ Function Prototypes ]--