Showing 1 changed files with 2 additions and 2 deletions
+2 -2
monitoring.d/raspberrypi
... ...
@@ -70,8 +70,8 @@ function core_temp () {
70 70
     local min=60
71 71
     local level=("warning" "severe" "danger!")
72 72
     local step=$(( $(</sys/class/thermal/thermal_zone0/temp) - (min * 1000) ))
73
-    if test $step -gt 1; then
74
-#    if test $step -gt 5000; then # en été il fait plus chaud, c'est normal que ça monte à 60° régulièrement
73
+#    if test $step -gt 1; then
74
+    if test $step -gt 5000; then # en été il fait plus chaud, c'est normal que ça monte à 60° régulièrement
75 75
         step=$((step / 10000))
76 76
         test $step -le 2 || step=2
77 77
         echo "${level[step]}: température > $((min + step * 10))°"