mirror of
https://github.com/systemd/systemd.git
synced 2024-11-05 06:52:22 +03:00
14 lines
511 B
Plaintext
14 lines
511 B
Plaintext
# md links hook into "change" events, when the array becomes available
|
|
|
|
KERNEL!="md[0-9]*", GOTO="md_end"
|
|
ACTION!="add|change", GOTO="md_end"
|
|
|
|
ATTR{md/array_state}=="|clear|inactive", GOTO="md_end"
|
|
|
|
IMPORT{program}="vol_id --export $tempnode"
|
|
OPTIONS="link_priority=100"
|
|
ENV{ID_FS_USAGE}=="filesystem|other|crypto", ENV{ID_FS_UUID}=="?*", SYMLINK+="disk/by-uuid/$env{ID_FS_UUID}"
|
|
ENV{ID_FS_USAGE}=="filesystem|other", ENV{ID_FS_LABEL_SAFE}=="?*", SYMLINK+="disk/by-label/$env{ID_FS_LABEL_SAFE}"
|
|
|
|
LABEL="md_end"
|