diff options
author | Patrick Simianer <p@simianer.de> | 2014-10-09 20:44:15 +0100 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2014-10-09 20:44:15 +0100 |
commit | ca41eddfdc979955105cce572e659941544d6f6d (patch) | |
tree | bf446902e8323e58c6fc14dce808b9719da7d3f6 /temp_hdd | |
parent | 0aae427eb3838297f6e204c2961739ef834762cf (diff) |
alles neu macht der mai
Diffstat (limited to 'temp_hdd')
-rwxr-xr-x | temp_hdd | 15 |
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 + |