summaryrefslogtreecommitdiff
path: root/testing/dmraid/dmraid_hook
diff options
context:
space:
mode:
Diffstat (limited to 'testing/dmraid/dmraid_hook')
-rw-r--r--testing/dmraid/dmraid_hook14
1 files changed, 0 insertions, 14 deletions
diff --git a/testing/dmraid/dmraid_hook b/testing/dmraid/dmraid_hook
deleted file mode 100644
index 37283e83e..000000000
--- a/testing/dmraid/dmraid_hook
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/ash
-
-run_hook() {
- modprobe -a -q dm-mod dm-mirror >/dev/null 2>&1
- msg ":: Activating dmraid arrays..."
- # prevent any event monitoring calls with -I
- if [ "$quiet" = "y" ]; then
- dmraid -ay -I -Z >/dev/null
- else
- dmraid -ay -I -Z
- fi
-}
-
-# vim: set ft=sh ts=4 sw=4 et: