summaryrefslogtreecommitdiff
path: root/testing/mdadm/mdadm_udev_install
diff options
context:
space:
mode:
Diffstat (limited to 'testing/mdadm/mdadm_udev_install')
-rw-r--r--testing/mdadm/mdadm_udev_install22
1 files changed, 0 insertions, 22 deletions
diff --git a/testing/mdadm/mdadm_udev_install b/testing/mdadm/mdadm_udev_install
deleted file mode 100644
index be653fc74..000000000
--- a/testing/mdadm/mdadm_udev_install
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/bash
-
-build() {
- MODULES=" $(checked_modules "drivers/md/*" | grep -v "dm-")"
-
- # check if a custom mdadm.conf exists
- if grep -qw ^ARRAY "$BASEDIR/etc/mdadm.conf"; then
- echo "Custom /etc/mdadm.conf file will be used in initramfs for assembling arrays."
- add_file "/etc/mdadm.conf"
- fi
-
- add_binary "mdadm"
- add_file "/usr/lib/udev/rules.d/64-md-raid.rules"
-}
-
-help() {
- cat <<HELPEOF
- This hook loads raid arrays with udev.
-HELPEOF
-}
-
-# vim: set ft=sh ts=4 sw=4 et: