summaryrefslogtreecommitdiff
path: root/debian/mdadm.config
diff options
context:
space:
mode:
authormadduck <madduck@3cfab66f-1918-0410-86b3-c06b76f9a464>2006-08-01 15:22:37 +0000
committermadduck <madduck@3cfab66f-1918-0410-86b3-c06b76f9a464>2006-08-01 15:22:37 +0000
commit16c734029b2461e8468d3b8e5413bd893420830c (patch)
tree6a034b74b543d22caa5a7c274e9843ba584dea37 /debian/mdadm.config
parent3ee67c7d890a0bb9980632ca16c8ccb749167cb0 (diff)
* Recognise devfs-style device nodes by fixing a regression bug in the root
RAID autodetection code (closes: #381007), which was introduced as part of the fix for #380596 in the 2.5.2-9 upload. The bug is RC, but it only applies to unstable right now, so I am not pumping up the urgency.
Diffstat (limited to 'debian/mdadm.config')
-rw-r--r--debian/mdadm.config2
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/mdadm.config b/debian/mdadm.config
index fc469c82..239ed287 100644
--- a/debian/mdadm.config
+++ b/debian/mdadm.config
@@ -88,7 +88,7 @@ while true; do
i="${i%p[0-9]*}"
case "$i" in
- /dev/md[0-9]*|/dev/md_d[0-9]*)
+ /dev/md[0-9]*|/dev/md_d[0-9]*|/dev/md/[0-9]*|/dev/md/d[0-9]*)
[ -b "$i" ] && ARRAYS="${ARRAYS:+$ARRAYS }$i" && continue
echo "E: device does not exist: $i" >&2
ERROR=1; break