aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Karl DeBisschop <kdebisschop@users.sourceforge.net> 2003-01-19 06:34:59 +0000
committerGravatar Karl DeBisschop <kdebisschop@users.sourceforge.net> 2003-01-19 06:34:59 +0000
commitc53487d26c5b14017aeec3d8af280c7f046c3514 (patch)
treed2dc3bbb1465d928c82f48977cdf9b043d5da3fa
parent86ac5cbdb767501a836dc57f21377ae11810d4d0 (diff)
downloadmonitoring-plugins-c53487d26c5b14017aeec3d8af280c7f046c3514.tar.gz
indicate new default state in get_rpcinfo, also fix a bunch of indents for consistent format
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@252 f882894a-f735-0410-b71e-b25c423dba1c
-rwxr-xr-xplugins-scripts/check_rpc.pl22
1 files changed, 11 insertions, 11 deletions
diff --git a/plugins-scripts/check_rpc.pl b/plugins-scripts/check_rpc.pl
index b9ca2799..783fa470 100755
--- a/plugins-scripts/check_rpc.pl
+++ b/plugins-scripts/check_rpc.pl
@@ -51,16 +51,16 @@ $proto[10007]='u';
use Getopt::Long;
Getopt::Long::Configure('bundling');
GetOptions(
- "V" => \$opt_V, "version" => \$opt_V,
- "h" => \$opt_h, "help" => \$opt_h,
- "C=s" => \$opt_C, "command=s" => \$opt_C,
- "p=i" => \$opt_p, "port=i" => \$opt_p,
- "H=s" => \$opt_H, "hostname=s" => \$opt_H,
- "c=s" => \$opt_c, "progver=s" => \$opt_c,
- "v+" => \$verbose, "verbose+" => \$verbose,
- "u" => \$opt_u, "udp" => \$opt_u,
- "t" => \$opt_t, "tcp" => \$opt_t
- );
+ "V" => \$opt_V, "version" => \$opt_V,
+ "h" => \$opt_h, "help" => \$opt_h,
+ "C=s" => \$opt_C, "command=s" => \$opt_C,
+ "p=i" => \$opt_p, "port=i" => \$opt_p,
+ "H=s" => \$opt_H, "hostname=s" => \$opt_H,
+ "c=s" => \$opt_c, "progver=s" => \$opt_c,
+ "v+" => \$verbose, "verbose+" => \$verbose,
+ "u" => \$opt_u, "udp" => \$opt_u,
+ "t" => \$opt_t, "tcp" => \$opt_t
+);
# -h means display verbose help screen
if ($opt_h) { print_help(); exit $ERRORS{'OK'}; }
@@ -313,7 +313,7 @@ sub get_rpcinfo {
if ( $line =~ /program $prognum version ([0-9]*) ready and waiting/ ) {
$response .= " version $1";
- $state = 'OK' unless $state ne 'OK';
+ $state = 'OK' unless $state ne 'UNKNOWN';
print "1:$response \n" if $verbose;
}