summaryrefslogtreecommitdiff
path: root/hddtemp
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2014-08-10 11:19:38 +0100
committerPatrick Simianer <p@simianer.de>2014-08-10 11:19:38 +0100
commit5869505d64c04c536bdcd71a197ade918c36bf1c (patch)
tree6af5232a9f2e058f15230a370a960f89871a2b74 /hddtemp
init
Diffstat (limited to 'hddtemp')
-rwxr-xr-xhddtemp16
1 files changed, 16 insertions, 0 deletions
diff --git a/hddtemp b/hddtemp
new file mode 100755
index 0000000..1b37d54
--- /dev/null
+++ b/hddtemp
@@ -0,0 +1,16 @@
+#!/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
+