2009-10-12 18:36:19 +02:00
|
|
|
{ config, pkgs, ... }:
|
2009-03-06 13:27:30 +01:00
|
|
|
|
|
|
|
###### implementation
|
2007-01-11 01:40:28 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2007-01-23 21:09:06 +01:00
|
|
|
tempConf = "/var/run/mdadm.conf";
|
2009-12-29 11:04:54 +01:00
|
|
|
logFile = "/var/log/mdadmEvents.log";
|
2009-03-06 13:27:30 +01:00
|
|
|
modprobe = config.system.sbin.modprobe;
|
2009-12-29 22:23:22 +01:00
|
|
|
inherit (pkgs) mdadm diffutils;
|
2007-01-11 01:40:28 +01:00
|
|
|
|
2009-12-29 11:04:54 +01:00
|
|
|
mdadmEventHandler = pkgs.writeScript "mdadmEventHandler.sh" ''
|
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
echo "$@" >> ${logFile}
|
|
|
|
case $1 in
|
|
|
|
(NewArray)
|
2009-12-29 15:10:05 +01:00
|
|
|
initctl emit -n new-raid-array
|
2009-12-29 11:04:54 +01:00
|
|
|
;;
|
|
|
|
(*) ;;
|
|
|
|
esac
|
|
|
|
'';
|
|
|
|
|
2007-01-11 01:40:28 +01:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
2009-12-29 15:10:05 +01:00
|
|
|
jobs.swraid = {
|
|
|
|
startOn = [ "new-raid-array" ];
|
|
|
|
description = "Assemble RAID arrays.";
|
|
|
|
|
|
|
|
script = ''
|
|
|
|
# Load the necessary RAID personalities.
|
|
|
|
# !!! hm, doesn't the kernel load these automatically?
|
|
|
|
for mod in raid0 raid1 raid5; do
|
|
|
|
${modprobe}/sbin/modprobe $mod || true
|
|
|
|
done
|
|
|
|
|
|
|
|
# Save previous probe
|
|
|
|
mv ${tempConf} ${tempConf}.old
|
|
|
|
|
|
|
|
# Scan /proc/partitions for RAID devices.
|
|
|
|
${mdadm}/sbin/mdadm --examine --brief --scan -c partitions > ${tempConf}
|
|
|
|
|
2010-01-13 11:37:58 +01:00
|
|
|
if ! ${diffutils}/bin/diff ${tempConf} ${tempConf}.old > /dev/null; then
|
|
|
|
# Activate each device found.
|
|
|
|
${mdadm}/sbin/mdadm --assemble -c ${tempConf} --scan
|
2009-12-29 15:10:05 +01:00
|
|
|
|
|
|
|
# Send notifications.
|
|
|
|
initctl emit -n new-devices
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Remove previous configuration.
|
|
|
|
rm ${tempConf}.old
|
|
|
|
'';
|
|
|
|
|
|
|
|
task = true;
|
|
|
|
};
|
2009-10-12 18:36:19 +02:00
|
|
|
|
2009-12-29 11:04:54 +01:00
|
|
|
jobs.swraidEvents = {
|
|
|
|
name = "swraid-events";
|
|
|
|
description = "Watch mdadm events.";
|
|
|
|
startOn = [ "startup" ];
|
2009-12-29 15:10:05 +01:00
|
|
|
|
|
|
|
postStart = ''
|
|
|
|
echo > ${tempConf}
|
|
|
|
|
|
|
|
# Assemble early raid devices.
|
|
|
|
initctl emit -n new-raid-array
|
|
|
|
'';
|
|
|
|
|
|
|
|
# !!! Someone should ensure that this is indeed doing what the manual says.
|
2009-12-29 11:04:54 +01:00
|
|
|
exec = "${mdadm}/sbin/mdadm --monitor --scan --program ${mdadmEventHandler}";
|
|
|
|
};
|
|
|
|
|
2007-01-11 01:40:28 +01:00
|
|
|
}
|