diff options
author | Patrick Simianer <p@simianer.de> | 2016-04-16 16:33:36 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2016-04-16 16:33:36 +0200 |
commit | 6cf83057ed70ce3ce10ef2dc37537c190ee92405 (patch) | |
tree | fd27c2eb42eab38e78c66830ce1dcd31415ffc15 /monitor-hdd-temp | |
parent | 267719722af8daf8e0cb4e24e7ee1419d4308e0b (diff) |
fix func.zsh inclusion
Diffstat (limited to 'monitor-hdd-temp')
-rwxr-xr-x | monitor-hdd-temp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/monitor-hdd-temp b/monitor-hdd-temp new file mode 100755 index 0000000..6f2e0fb --- /dev/null +++ b/monitor-hdd-temp @@ -0,0 +1,15 @@ +#!/bin/zsh + +. $(dirname $0:A)/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 + |