blob: 95e6a2b15e8148d9882bf02fa3a9f1abf7429f89 (
plain)
1
2
3
4
5
6
7
8
9
|
#! /bin/bash
# stop resync of soft raid
if [ $do_init_tasks -eq 1 ]; then
if grep -q active /proc/mdstat 2>/dev/null; then
echo "frozen" | tee /sys/block/md*/md/sync_action >/dev/null
fi
fi
exit 0
|