diff options
Diffstat (limited to 'mdstat')
-rwxr-xr-x | mdstat | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -0,0 +1,7 @@ +#!/bin/zsh + + +S=$(awk '/^md/ {printf "%s: ", $1}; /blocks/ {print $NF}' </proc/mdstat) +STATUS=$(echo $S | cut -d" " -f2) +if [[ $STATUS != "[UUUU]" ]]; then logger "[mdstat warning] $S"; fi + |