summaryrefslogtreecommitdiff
path: root/monitor_hdd_temp
diff options
context:
space:
mode:
Diffstat (limited to 'monitor_hdd_temp')
-rwxr-xr-xmonitor_hdd_temp15
1 files changed, 15 insertions, 0 deletions
diff --git a/monitor_hdd_temp b/monitor_hdd_temp
new file mode 100755
index 0000000..250c34c
--- /dev/null
+++ b/monitor_hdd_temp
@@ -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
+