summaryrefslogtreecommitdiff
path: root/temp_hdd
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2016-04-14 17:30:30 +0200
committerPatrick Simianer <p@simianer.de>2016-04-14 17:30:30 +0200
commit3c1b8d5c8947bf0aa3e929c21f59eaf06aba33af (patch)
tree71111c40dd00a4739c53413f5926a26bbe901ead /temp_hdd
parent2c01777eb98ac7649d24e1a60a94393892b7e7af (diff)
more general monitor_soft_raid
Diffstat (limited to 'temp_hdd')
-rwxr-xr-xtemp_hdd15
1 files changed, 0 insertions, 15 deletions
diff --git a/temp_hdd b/temp_hdd
deleted file mode 100755
index 250c34c..0000000
--- a/temp_hdd
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/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
-