Files
Ertuğrul Erata 8e13c775be core updated.
2015-05-17 16:28:10 +03:00

7 lines
136 B
Bash

#!/bin/bash
for dev in `grep "^md.*: active" /proc/mdstat | cut -f 1 -d ' '`; do
echo "repair" > /sys/block/$dev/md/sync_action
done