mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 02:22:15 +08:00
19 lines
582 B
Bash
19 lines
582 B
Bash
# vim: set ft=sh:
|
|
run_hook ()
|
|
{
|
|
/sbin/modprobe -q dm-mod >/dev/null 2>&1
|
|
/sbin/modprobe -q dm-mirror >/dev/null 2>&1
|
|
if [ -e "/sys/class/misc/device-mapper" ]; then
|
|
if [ ! -e "/dev/mapper/control" ]; then
|
|
/bin/mknod "/dev/mapper/control" c $(cat /sys/class/misc/device-mapper/dev | sed 's|:| |')
|
|
fi
|
|
msg ":: Activating dmraid arrays..."
|
|
# prevent any event monitoring calls with -I
|
|
if [ "${quiet}" = "y" ]; then
|
|
/sbin/dmraid -ay -I -Z >/dev/null
|
|
else
|
|
/sbin/dmraid -ay -I -Z
|
|
fi
|
|
fi
|
|
}
|