diff --git a/check_lsi_raid b/check_lsi_raid index 41bb8ce..cb062e9 100755 --- a/check_lsi_raid +++ b/check_lsi_raid @@ -615,7 +615,7 @@ sub getPDStatus{ } if(exists($PD->{'Drive Temperature'})){ my $temp = $PD->{'Drive Temperature'}; - if($temp ne 'N/A'){ + if($temp ne 'N/A' && $temp ne '0C (32.00 F)'){ $temp =~ /^([0-9]+)C/; if(!(checkThreshs($1, $PD_TEMP_CRITICAL))){ $status = 'Critical';