/usr/lib/udev/rules.d
NameSizeModeActions
10-dm.rules74920444editdlrm
11-dm-lvm.rules26290444editdlrm
11-dm-parts.rules14420644editdlrm
13-dm-disk.rules23060444editdlrm
40-elevator.rules7280644editdlrm
40-redhat.rules20140644editdlrm
40-usb-blacklist.rules4580644editdlrm
50-udev-default.rules54030644editdlrm
60-autosuspend.rules7040644editdlrm
60-block.rules7030644editdlrm
60-cdrom_id.rules10710644editdlrm
60-drm.rules4130644editdlrm
60-evdev.rules9900644editdlrm
60-fido-id.rules4910644editdlrm
60-input-id.rules2820644editdlrm
60-net.rules1290644editdlrm
60-persistent-alsa.rules6160644editdlrm
60-persistent-input.rules27190644editdlrm
60-persistent-storage-tape.rules22040644editdlrm
60-persistent-storage.rules109010644editdlrm
60-persistent-v4l.rules7690644editdlrm
60-sensor.rules16180644editdlrm
60-serial.rules11360644editdlrm
60-tpm-udev.rules2430644editdlrm
61-scsi-sg3_id.rules63590644editdlrm
63-fc-wwpn-id.rules6240644editdlrm
63-scsi-sg3_symlink.rules29700644editdlrm
64-btrfs.rules6160644editdlrm
65-scsi-cciss_id.rules7320644editdlrm
66-kpartx.rules13920644editdlrm
68-del-part-nodes.rules11420644editdlrm
69-dm-lvm.rules36920444editdlrm
70-camera.rules2810644editdlrm
70-joystick.rules4320644editdlrm
70-memory.rules1840644editdlrm
70-mouse.rules7340644editdlrm
70-power-switch.rules5760644editdlrm
70-touchpad.rules4730644editdlrm
70-uaccess.rules37520644editdlrm
71-prefixdevname.rules4030644editdlrm
71-seat.rules38180644editdlrm
73-seat-late.rules6430644editdlrm
75-net-description.rules5120644editdlrm
75-probe_mtd.rules1740644editdlrm
78-sound-card.rules48160644editdlrm
80-drivers.rules6000644editdlrm
80-net-setup-link.rules2950644editdlrm
81-net-dhcp.rules5280644editdlrm
84-nm-drivers.rules5330644editdlrm
85-nm-unmanaged.rules20130644editdlrm
90-nm-thunderbolt.rules5880644editdlrm
90-vconsole.rules4890644editdlrm
91-drm-modeset.rules560644editdlrm
95-dm-notify.rules4830444editdlrm
98-kexec.rules9060644editdlrm
99-nfs.rules950644editdlrm
99-systemd.rules50390644editdlrm
README4350644editdlrm
Edit: /usr/lib/udev/rules.d/13-dm-disk.rules (2306B)
# Copyright (C) 2009 Red Hat, Inc. All rights reserved. # # This file is part of LVM2. # Udev rules for device-mapper devices. # # These rules create symlinks in /dev/disk directory. # Symlinks that depend on probing filesystem type, # label and uuid are created only if the device is not # suspended. # "add" event is processed on coldplug only! ACTION=="remove", GOTO="dm_end" ENV{DM_UDEV_RULES_VSN}!="?*", GOTO="dm_end" ENV{DM_UDEV_DISABLE_DISK_RULES_FLAG}=="1", GOTO="dm_end" SYMLINK+="disk/by-id/dm-name-$env{DM_NAME}" ENV{DM_UUID}=="?*", SYMLINK+="disk/by-id/dm-uuid-$env{DM_UUID}" ENV{DISKSEQ}=="?*", SYMLINK+="disk/by-diskseq/$env{DISKSEQ}" ENV{DM_SUSPENDED}=="1", ENV{DM_UDEV_PRIMARY_SOURCE_FLAG}=="1", GOTO="dm_import" ENV{DM_NOSCAN}=="1", ENV{DM_UDEV_PRIMARY_SOURCE_FLAG}=="1", GOTO="dm_import" ENV{DM_SUSPENDED}=="1", GOTO="dm_end" ENV{DM_NOSCAN}=="1", GOTO="dm_watch" IMPORT{builtin}="blkid" GOTO="dm_link" LABEL="dm_import" IMPORT{db}="ID_FS_TYPE" IMPORT{db}="ID_FS_USAGE" IMPORT{db}="ID_FS_UUID_ENC" IMPORT{db}="ID_FS_LABEL_ENC" IMPORT{db}="ID_PART_ENTRY_NAME" IMPORT{db}="ID_PART_ENTRY_UUID" IMPORT{db}="ID_PART_ENTRY_SCHEME" IMPORT{db}="ID_PART_GPT_AUTO_ROOT" LABEL="dm_link" ENV{DM_UDEV_LOW_PRIORITY_FLAG}=="1", OPTIONS="link_priority=-100" 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|crypto", ENV{ID_FS_LABEL_ENC}=="?*", SYMLINK+="disk/by-label/$env{ID_FS_LABEL_ENC}" ENV{ID_PART_ENTRY_UUID}=="?*", SYMLINK+="disk/by-partuuid/$env{ID_PART_ENTRY_UUID}" ENV{ID_PART_ENTRY_SCHEME}=="gpt", ENV{ID_PART_ENTRY_NAME}=="?*", SYMLINK+="disk/by-partlabel/$env{ID_PART_ENTRY_NAME}" ENV{ID_PART_ENTRY_SCHEME}=="gpt", ENV{ID_PART_GPT_AUTO_ROOT}=="1", SYMLINK+="gpt-auto-root" # Add inotify watch to track changes on this device. # Using the watch rule is not optimal - it generates a lot of spurious # and useless events whenever the device opened for read-write is closed. # The best would be to generate the event directly in the tool changing # relevant information so only relevant events will be processed # (like creating a filesystem, changing filesystem label etc.). # # But let's use this until we have something better... LABEL="dm_watch" OPTIONS+="watch" LABEL="dm_end"