Renamed *_OVERHEAT functions to *_OVERHEATING

This commit is contained in:
Tigerblue77 2025-01-26 14:14:24 +00:00
parent 87372e957d
commit 0c18027184
2 changed files with 5 additions and 5 deletions

View file

@ -125,5 +125,5 @@ function get_Dell_server_model() {
}
# Define functions to check if CPU 1 and CPU 2 temperatures are above the threshold
function CPU1_OVERHEAT() { [ $CPU1_TEMPERATURE -gt $CPU_TEMPERATURE_THRESHOLD ]; }
function CPU2_OVERHEAT() { [ $CPU2_TEMPERATURE -gt $CPU_TEMPERATURE_THRESHOLD ]; }
function CPU1_OVERHEATING() { [ $CPU1_TEMPERATURE -gt $CPU_TEMPERATURE_THRESHOLD ]; }
function CPU2_OVERHEATING() { [ $CPU2_TEMPERATURE -gt $CPU_TEMPERATURE_THRESHOLD ]; }