1
0
mirror of https://github.com/systemd/systemd.git synced 2024-11-05 06:52:22 +03:00
systemd/etc/udev/suse/64-device-mapper.rules

19 lines
747 B
Plaintext
Raw Normal View History

2006-11-14 22:16:35 +03:00
# device mapper links hook into "change" events, when the dm table
# becomes available; some table-types must be ignored
2006-06-16 13:11:27 +04:00
2006-08-11 16:39:13 +04:00
KERNEL=="device-mapper", SYMLINK+="mapper/control"
2007-04-23 20:22:08 +04:00
KERNEL!="dm-*", GOTO="device_mapper_end"
ACTION!="add|change", GOTO="device_mapper_end"
2006-06-16 13:11:27 +04:00
2007-04-23 20:22:08 +04:00
# skip snapshot and error tables
2006-06-16 13:11:27 +04:00
PROGRAM!="/sbin/dmsetup status -j %M -m %m", GOTO="device_mapper_end"
RESULT=="|*snapshot*|*error*", GOTO="device_mapper_end"
2006-08-11 16:39:13 +04:00
IMPORT{program}="vol_id --export $tempnode"
2007-04-23 20:22:08 +04:00
OPTIONS="link_priority=-100"
2006-08-11 16:39:13 +04:00
ENV{ID_FS_USAGE}=="filesystem|other|crypto", ENV{ID_FS_UUID}=="?*", SYMLINK+="disk/by-uuid/$env{ID_FS_UUID}"
2006-06-16 13:11:27 +04:00
ENV{ID_FS_USAGE}=="filesystem|other", ENV{ID_FS_LABEL_SAFE}=="?*", SYMLINK+="disk/by-label/$env{ID_FS_LABEL_SAFE}"
LABEL="device_mapper_end"