mirror of https://github.com/mikaku/Monitorix.git
remove superfluous if lines #367
This commit is contained in:
parent
3bb03e983b
commit
41d5f6eab4
|
@ -245,7 +245,6 @@ sub amdgpu_update {
|
|||
if(lc($amdgpu->{alerts}->{coretemp_enabled}) eq "y") {
|
||||
my $sensorIndex = 1;
|
||||
$config->{amdgpu_hist_alert1}->{$n} = 0
|
||||
if(!$config->{amdgpu_hist_alert1}->{$n});
|
||||
if($sensors[$sensorIndex] >= $amdgpu->{alerts}->{coretemp_threshold} && $config->{amdgpu_hist_alert1}->{$n} < $sensors[$sensorIndex]) {
|
||||
if(-x $amdgpu->{alerts}->{coretemp_script}) {
|
||||
logger("$myself: ALERT: executing script '$amdgpu->{alerts}->{coretemp_script}'.");
|
||||
|
@ -259,7 +258,6 @@ sub amdgpu_update {
|
|||
if(lc($amdgpu->{alerts}->{memorytemp_enabled}) eq "y") {
|
||||
my $sensorIndex = 2;
|
||||
$config->{amdgpu_hist_alert2}->{$n} = 0
|
||||
if(!$config->{amdgpu_hist_alert2}->{$n});
|
||||
if($sensors[$sensorIndex] >= $amdgpu->{alerts}->{memorytemp_threshold} && $config->{amdgpu_hist_alert2}->{$n} < $sensors[$sensorIndex]) {
|
||||
if(-x $amdgpu->{alerts}->{memorytemp_script}) {
|
||||
logger("$myself: ALERT: executing script '$amdgpu->{alerts}->{memorytemp_script}'.");
|
||||
|
|
|
@ -264,7 +264,6 @@ sub nvme_update {
|
|||
if(lc($nvme->{alerts}->{availspare_enabled}) eq "y") {
|
||||
my $smartIndex = 1;
|
||||
$config->{nvme_hist_alert1}->{$n} = 0
|
||||
if(!$config->{nvme_hist_alert1}->{$n});
|
||||
if($smart[$smartIndex] <= $nvme->{alerts}->{availspare_threshold} && $config->{nvme_hist_alert1}->{$n} < $smart[$smartIndex]) {
|
||||
if(-x $nvme->{alerts}->{availspare_script}) {
|
||||
logger("$myself: ALERT: executing script '$nvme->{alerts}->{availspare_script}'.");
|
||||
|
@ -278,7 +277,6 @@ sub nvme_update {
|
|||
if(lc($nvme->{alerts}->{percentused_enabled}) eq "y") {
|
||||
my $smartIndex = 2;
|
||||
$config->{nvme_hist_alert2}->{$n} = 0
|
||||
if(!$config->{nvme_hist_alert2}->{$n});
|
||||
if($smart[$smartIndex] >= $nvme->{alerts}->{percentused_threshold} && $config->{nvme_hist_alert2}->{$n} < $smart[$smartIndex]) {
|
||||
if(-x $nvme->{alerts}->{percentused_script}) {
|
||||
logger("$myself: ALERT: executing script '$nvme->{alerts}->{percentused_script}'.");
|
||||
|
|
Loading…
Reference in New Issue