diff options
Diffstat (limited to 'monitor-soft-raid')
-rwxr-xr-x | monitor-soft-raid | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/monitor-soft-raid b/monitor-soft-raid new file mode 100755 index 0000000..1dc7da4 --- /dev/null +++ b/monitor-soft-raid @@ -0,0 +1,7 @@ +#!/bin/zsh + +T="[$(printf 'U%.0s' {1..$1})]" +S=$(awk '/^md/ {printf "%s: ", $1}; /blocks/ {print $NF}' </proc/mdstat) +STATUS=$(echo $S | cut -d" " -f2) +if [[ $STATUS != $T ]]; then logger "[mdstat warning] $S"; fi + |