summaryrefslogtreecommitdiff
path: root/monitor_hdd_temp
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2016-04-16 16:34:33 +0200
committerPatrick Simianer <p@simianer.de>2016-04-16 16:34:33 +0200
commit95b3e4bb744932ce4eac14bb350cc0455d15848a (patch)
treec96093d9667c87264a8820d876041fe96b068f57 /monitor_hdd_temp
parentfca926851e1d56eeb0044727fe976252d646f48d (diff)
mv
Diffstat (limited to 'monitor_hdd_temp')
-rwxr-xr-xmonitor_hdd_temp15
1 files changed, 0 insertions, 15 deletions
diff --git a/monitor_hdd_temp b/monitor_hdd_temp
deleted file mode 100755
index 250c34c..0000000
--- a/monitor_hdd_temp
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/zsh
-
-. /home/pks/bin/func.zsh
-check_root
-
-MAX_TEMP=$1
-
-for i in `ls -1 /dev/disk/by-id/ | grep -v -P "^wwn-|\-part\d$|md-name|md-uuid"`; do
- DRIVE="/dev/disk/by-id/$i"
- TEMP=$(/usr/sbin/hddtemp -n $DRIVE 2>/dev/null)
- if [ "$TEMP" != "" ]; then
- if [ $TEMP -gt $MAX_TEMP ]; then logger "$DRIVE temp at $TEMP"; fi
- fi
-done
-