13 lines
369 B
Plaintext
13 lines
369 B
Plaintext
# This file causes block devices with Linux RAID (mdadm) signatures to
|
|
# automatically cause mdadm to be run.
|
|
# See udev(8) for syntax
|
|
|
|
SUBSYSTEM!="block", GOTO="dm_end"
|
|
ACTION!="add|change", GOTO="dm_end"
|
|
|
|
ENV{ID_FS_TYPE}=="linux_raid_member", GOTO="dm_end"
|
|
|
|
ENV{ID_FS_TYPE}=="*_raid_member", RUN+="/bin/ln -s /sbin/dmraid_scan /initqueue/dmraid_scan"
|
|
|
|
LABEL="dm_end"
|