diff options
-rwxr-xr-x | nagios-check-raid-3ware | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nagios-check-raid-3ware b/nagios-check-raid-3ware index 45554b9..4fad01b 100755 --- a/nagios-check-raid-3ware +++ b/nagios-check-raid-3ware @@ -86,7 +86,8 @@ for my $line (@tw) { print "Cannot parse line '$line'\n"; exit $UNKNOWN; }; - if ($status eq 'OK') { + if ($status eq 'OK' || + $status eq 'VERIFYING') { $msg .= ($msg eq '' ? '' : '; '). "$device: $status"; $exit = $exit > $OK ? $exit : $OK; } elsif ($status eq 'DEGRADED') { |