summaryrefslogtreecommitdiff
path: root/temp_hdd
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2014-10-09 20:44:15 +0100
committerPatrick Simianer <p@simianer.de>2014-10-09 20:44:15 +0100
commitca41eddfdc979955105cce572e659941544d6f6d (patch)
treebf446902e8323e58c6fc14dce808b9719da7d3f6 /temp_hdd
parent0aae427eb3838297f6e204c2961739ef834762cf (diff)
alles neu macht der mai
Diffstat (limited to 'temp_hdd')
-rwxr-xr-xtemp_hdd15
1 files changed, 15 insertions, 0 deletions
diff --git a/temp_hdd b/temp_hdd
new file mode 100755
index 0000000..250c34c
--- /dev/null
+++ b/temp_hdd
@@ -0,0 +1,15 @@
+#!/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
+