diff options
author | Matthew Kent <mattkent@users.sourceforge.net> | 2004-11-29 04:49:10 (GMT) |
---|---|---|
committer | Matthew Kent <mattkent@users.sourceforge.net> | 2004-11-29 04:49:10 (GMT) |
commit | b51ab9df98438e68c83ce20f896c9a7cb8bc1dcc (patch) | |
tree | f0a8a1d176e7170c0e0767b3b5da36e8f2a006da /contrib | |
parent | d2e51944f4db36b69f58514072709ec28c6bcc8d (diff) | |
download | monitoring-plugins-b51ab9df98438e68c83ce20f896c9a7cb8bc1dcc.tar.gz |
Better error checking (820806)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@948 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/check_linux_raid.pl | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/contrib/check_linux_raid.pl b/contrib/check_linux_raid.pl index 25fdf88..2a58dbe 100644 --- a/contrib/check_linux_raid.pl +++ b/contrib/check_linux_raid.pl | |||
@@ -26,6 +26,12 @@ use strict; | |||
26 | 26 | ||
27 | my %ERRORS=('DEPENDENT'=>4,'UNKNOWN'=>3,'OK'=>0,'WARNING'=>1,'CRITICAL'=>2); | 27 | my %ERRORS=('DEPENDENT'=>4,'UNKNOWN'=>3,'OK'=>0,'WARNING'=>1,'CRITICAL'=>2); |
28 | 28 | ||
29 | # die with an error if we're not on Linux | ||
30 | if ($^O ne 'linux') { | ||
31 | print "This plugin only applicable on Linux.\n"; | ||
32 | exit $ERRORS{'UNKNOWN'}; | ||
33 | } | ||
34 | |||
29 | open (MDSTAT, "</proc/mdstat") or die "Failed to open /proc/mdstat"; | 35 | open (MDSTAT, "</proc/mdstat") or die "Failed to open /proc/mdstat"; |
30 | my $found = 0; | 36 | my $found = 0; |
31 | my $status = ""; | 37 | my $status = ""; |
@@ -43,7 +49,7 @@ while(<MDSTAT>) { | |||
43 | last; | 49 | last; |
44 | } | 50 | } |
45 | } else { | 51 | } else { |
46 | if (/$ARGV[0]/) { | 52 | if (/^$ARGV[0]\s*:/) { |
47 | $found = 1; | 53 | $found = 1; |
48 | if (/active/) { | 54 | if (/active/) { |
49 | $active = 1; | 55 | $active = 1; |