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

23 lines
905 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
2007-05-07 17:35:10 +04:00
IMPORT{program}="/sbin/dmsetup export -j%M -m%m"
ENV{DM_STATE}!="ACTIVE", GOTO="device_mapper_end"
ENV{DM_TARGET_TYPES}=="|*snapshot*|*error*", GOTO="device_mapper_end"
SYMLINK+="disk/by-id/dm-name-$env{DM_NAME}"
ENV{DM_UUID}=="?*", SYMLINK+="disk/by-id/dm-uuid-$env{DM_UUID}"
2006-06-16 13:11:27 +04:00
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"
2007-05-21 10:01:19 +04:00
ENV{ID_FS_USAGE}=="filesystem|other|crypto", ENV{ID_FS_UUID_ENC}=="?*", SYMLINK+="disk/by-uuid/$env{ID_FS_UUID_ENC}"
ENV{ID_FS_USAGE}=="filesystem|other", ENV{ID_FS_LABEL_ENC}=="?*", SYMLINK+="disk/by-label/$env{ID_FS_LABEL_ENC}"
2006-06-16 13:11:27 +04:00
LABEL="device_mapper_end"