Check that 'mdadm --assemble' is effective before continuing.
svn path=/nixos/trunk/; revision=19339
This commit is contained in:
parent
f22a548c0d
commit
b02cf8d20e
@ -5,6 +5,7 @@
|
|||||||
let
|
let
|
||||||
|
|
||||||
tempConf = "/var/run/mdadm.conf";
|
tempConf = "/var/run/mdadm.conf";
|
||||||
|
tempStatus = "/var/run/mdadm.status";
|
||||||
logFile = "/var/log/mdadmEvents.log";
|
logFile = "/var/log/mdadmEvents.log";
|
||||||
modprobe = config.system.sbin.modprobe;
|
modprobe = config.system.sbin.modprobe;
|
||||||
inherit (pkgs) mdadm diffutils;
|
inherit (pkgs) mdadm diffutils;
|
||||||
@ -42,10 +43,22 @@ in
|
|||||||
# Scan /proc/partitions for RAID devices.
|
# Scan /proc/partitions for RAID devices.
|
||||||
${mdadm}/sbin/mdadm --examine --brief --scan -c partitions > ${tempConf}
|
${mdadm}/sbin/mdadm --examine --brief --scan -c partitions > ${tempConf}
|
||||||
|
|
||||||
if ! ${diffutils}/bin/diff ${tempConf} ${tempConf}.old > /dev/null; then
|
if ! -q ${diffutils}/bin/diff ${tempConf} ${tempConf}.old > /dev/null; then
|
||||||
|
|
||||||
|
try=0
|
||||||
|
while ! test -e /proc/mdstat || ! ${diffutils}/bin/diff -q /proc/mdstat ${tempStatus} > /dev/null; do
|
||||||
|
test $try -gt 6 && break
|
||||||
|
test $try -neq 0 && sleep 10
|
||||||
|
|
||||||
# Activate each device found.
|
# Activate each device found.
|
||||||
${mdadm}/sbin/mdadm --assemble -c ${tempConf} --scan
|
${mdadm}/sbin/mdadm --assemble -c ${tempConf} --scan
|
||||||
|
|
||||||
|
try=$(($try + 1))
|
||||||
|
done
|
||||||
|
|
||||||
|
# Register the new status
|
||||||
|
cp /proc/mdstat ${tempStatus}
|
||||||
|
|
||||||
# Send notifications.
|
# Send notifications.
|
||||||
initctl emit -n new-devices
|
initctl emit -n new-devices
|
||||||
fi
|
fi
|
||||||
@ -64,6 +77,7 @@ in
|
|||||||
|
|
||||||
postStart = ''
|
postStart = ''
|
||||||
echo > ${tempConf}
|
echo > ${tempConf}
|
||||||
|
echo > ${tempStatus}
|
||||||
|
|
||||||
# Assemble early raid devices.
|
# Assemble early raid devices.
|
||||||
initctl emit -n new-raid-array
|
initctl emit -n new-raid-array
|
||||||
|
Loading…
Reference in New Issue
Block a user