summaryrefslogtreecommitdiff
path: root/testing/dmraid/dmraid_hook
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-04-22 00:02:56 +0000
committerroot <root@rshg054.dnsready.net>2012-04-22 00:02:56 +0000
commitaf1e6c210b43ea6b8e043524edccb1d0befd257f (patch)
tree39338a1d60483354554ee34df2afa262f8f201c0 /testing/dmraid/dmraid_hook
parent905dec08e7144fe77aad1161778a6c3b74ff305c (diff)
Sun Apr 22 00:02:56 UTC 2012
Diffstat (limited to 'testing/dmraid/dmraid_hook')
-rw-r--r--testing/dmraid/dmraid_hook19
1 files changed, 19 insertions, 0 deletions
diff --git a/testing/dmraid/dmraid_hook b/testing/dmraid/dmraid_hook
new file mode 100644
index 000000000..6219a718a
--- /dev/null
+++ b/testing/dmraid/dmraid_hook
@@ -0,0 +1,19 @@
+# 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
+ mkdir /dev/mapper
+ 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
+}