Raspberry temperature borders changed to 82 (warning) and 85 (error)

This commit is contained in:
Dirk Alders 2024-08-16 08:18:43 +02:00
parent 04aec5a53a
commit d68971304d

View File

@ -1,14 +1,13 @@
#!/bin/python3 #!/bin/python3
# #
import argparse
import nagios import nagios
import subprocess import subprocess
GPU_ERROR = 80 GPU_ERROR = 85
GPU_WARNING = 76.5 GPU_WARNING = 82
# #
CPU_ERROR = 80 CPU_ERROR = 85
CPU_WARNING = 76.5 CPU_WARNING = 82
# #
if __name__ == "__main__": if __name__ == "__main__":