diff options
author | Patrick Simianer <p@simianer.de> | 2016-04-14 17:30:30 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2016-04-14 17:30:30 +0200 |
commit | 3c1b8d5c8947bf0aa3e929c21f59eaf06aba33af (patch) | |
tree | 71111c40dd00a4739c53413f5926a26bbe901ead /temp_cpu | |
parent | 2c01777eb98ac7649d24e1a60a94393892b7e7af (diff) |
more general monitor_soft_raid
Diffstat (limited to 'temp_cpu')
-rwxr-xr-x | temp_cpu | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/temp_cpu b/temp_cpu deleted file mode 100755 index 90b2bc9..0000000 --- a/temp_cpu +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/zsh - -MAX_TEMP=$1 - -for i in \ - /sys/devices/pci0000:00/0000:00:18.3/temp1_input \ - /sys/devices/pci0000:00/0000:00:19.3/temp1_input \ - /sys/devices/pci0000:00/0000:00:1a.3/temp1_input \ - /sys/devices/pci0000:00/0000:00:1b.3/temp1_input; do - TEMP=$(cat $i) - if [ $TEMP -gt $MAX_TEMP ]; then - logger "Some CPU temp @$TEMP (/1000)!" - fi -done - |