]> git.ipfire.org Git - thirdparty/mdadm.git/blame - udev-md-raid.rules
Add mbr pseudo metadata handler.
[thirdparty/mdadm.git] / udev-md-raid.rules
CommitLineData
757a5d74
N
1# do not edit this file, it will be overwritten on update
2
3SUBSYSTEM!="block", GOTO="md_end"
757a5d74 4
7efa6bc3
N
5# handle potential components of arrays
6ENV{ID_FS_TYPE}=="linux_raid_member", ACTION=="remove", RUN+="/sbin/mdadm -If $name"
7ENV{ID_FS_TYPE}=="linux_raid_member", ACTION=="add", RUN+="/sbin/mdadm --incremental $env{DEVNAME}"
8
9# handle md arrays
10ACTION!="add|change", GOTO="md_end"
757a5d74
N
11KERNEL!="md*", GOTO="md_end"
12
fa509028
N
13# partitions have no md/{array_state,metadata_version}, but should not
14# for that reason be ignored.
15ENV{DEVTYPE}=="partition", GOTO="md_ignore_state"
16
757a5d74
N
17# container devices have a metadata version of e.g. 'external:ddf' and
18# never leave state 'inactive'
19ATTR{md/metadata_version}=="external:[A-Za-z]*", ATTR{md/array_state}=="inactive", GOTO="md_ignore_state"
fabf4941 20TEST!="md/array_state", GOTO="md_end"
757a5d74
N
21ATTR{md/array_state}=="|clear|inactive", GOTO="md_end"
22LABEL="md_ignore_state"
23
24IMPORT{program}="/sbin/mdadm --detail --export $tempnode"
67732c39 25ENV{DEVTYPE}=="disk", ENV{MD_NAME}=="?*", SYMLINK+="disk/by-id/md-name-$env{MD_NAME}", OPTIONS+="string_escape=replace"
757a5d74
N
26ENV{DEVTYPE}=="disk", ENV{MD_UUID}=="?*", SYMLINK+="disk/by-id/md-uuid-$env{MD_UUID}"
27ENV{DEVTYPE}=="disk", ENV{MD_DEVNAME}=="?*", SYMLINK+="md/$env{MD_DEVNAME}"
67732c39 28ENV{DEVTYPE}=="partition", ENV{MD_NAME}=="?*", SYMLINK+="disk/by-id/md-name-$env{MD_NAME}-part%n", OPTIONS+="string_escape=replace"
757a5d74
N
29ENV{DEVTYPE}=="partition", ENV{MD_UUID}=="?*", SYMLINK+="disk/by-id/md-uuid-$env{MD_UUID}-part%n"
30ENV{DEVTYPE}=="partition", ENV{MD_DEVNAME}=="*[^0-9]", SYMLINK+="md/$env{MD_DEVNAME}%n"
31ENV{DEVTYPE}=="partition", ENV{MD_DEVNAME}=="*[0-9]", SYMLINK+="md/$env{MD_DEVNAME}p%n"
32
5bac0443 33IMPORT{program}="/sbin/blkid -o udev -p $tempnode"
757a5d74 34OPTIONS+="link_priority=100"
2913d9df 35OPTIONS+="watch"
757a5d74
N
36ENV{ID_FS_USAGE}=="filesystem|other|crypto", ENV{ID_FS_UUID_ENC}=="?*", SYMLINK+="disk/by-uuid/$env{ID_FS_UUID_ENC}"
37ENV{ID_FS_USAGE}=="filesystem|other", ENV{ID_FS_LABEL_ENC}=="?*", SYMLINK+="disk/by-label/$env{ID_FS_LABEL_ENC}"
38
39LABEL="md_end"