diff --git a/system-status/system-status-lib.pl b/system-status/system-status-lib.pl index 65e3ddbd4..17351b01a 100755 --- a/system-status/system-status-lib.pl +++ b/system-status/system-status-lib.pl @@ -386,7 +386,8 @@ if (!$config{'collect_notemp'} && foreach my $d (&smart_status::list_smart_disks_partitions()) { my $st = &smart_status::get_drive_status($d->{'device'}, $d); foreach my $a (@{$st->{'attribs'}}) { - if ($a->[0] =~ /^Temperature\s+Celsius$/i && + if (($a->[0] =~ /^Temperature\s+Celsius$/i || + $a->[0] =~ /^Airflow\s+Temperature\s+Cel/i) && $a->[1] > 0) { push(@rv, { 'device' => $d->{'device'}, 'temp' => int($a->[1]),