1
0
mirror of https://github.com/systemd/systemd.git synced 2024-12-26 03:22:00 +03:00

rules: Gentoo update

This commit is contained in:
Matthias Schwarzott 2007-05-09 08:25:51 +02:00 committed by Kay Sievers
parent 9377c8d80c
commit 564794bbd3

View File

@ -9,23 +9,25 @@ ACTION!="add|change", GOTO="device_mapper_end"
# lookup device name
# use dmsetup, until devmap_name is provided by sys-fs/device-mapper
PROGRAM=="/sbin/dmsetup -j %M -m %m --noopencount --noheadings -c -o name info",
ENV{ID_DM_NAME}="%c"
ENV{DM_NAME}="%c"
# do not do anything if dmsetup does not provide a name
ENV{ID_DM_NAME}=="", NAME="", OPTIONS="ignore_device"
ENV{DM_NAME}=="", NAME="", OPTIONS="ignore_device"
# ignore luks crypt devices while not fully up
ENV{ID_DM_NAME}=="temporary-cryptsetup-*", NAME="", OPTIONS="ignore_device"
ENV{DM_NAME}=="temporary-cryptsetup-*", NAME="", OPTIONS="ignore_device"
# use queried name
ENV{ID_DM_NAME}=="?*", NAME="mapper/$env{ID_DM_NAME}"
ENV{DM_NAME}=="?*", NAME="mapper/$env{DM_NAME}"
SYMLINK+="disk/by-id/dm-name-$env{DM_NAME}"
PROGRAM!="/sbin/dmsetup status -j %M -m %m", GOTO="device_mapper_end"
RESULT=="|*snapshot*|*error*", GOTO="device_mapper_end"
IMPORT{program}="vol_id --export $tempnode"
OPTIONS="link_priority=50"
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|crypto", ENV{ID_FS_UUID_SAFE}=="?*", SYMLINK+="disk/by-uuid/$env{ID_FS_UUID_SAFE}"
ENV{ID_FS_USAGE}=="filesystem|other", ENV{ID_FS_LABEL_SAFE}=="?*", SYMLINK+="disk/by-label/$env{ID_FS_LABEL_SAFE}"
LABEL="device_mapper_end"