/usr/lib/udev/rules.d
NameSizeModeActions
10-dm.rules72660444editdlrm
11-dm-parts.rules14420644editdlrm
13-dm-disk.rules17940444editdlrm
40-elevator.rules7280644editdlrm
40-redhat.rules18340644editdlrm
40-usb-blacklist.rules4570644editdlrm
50-udev-default.rules37500644editdlrm
60-alias-kmsg.rules3570644editdlrm
60-block.rules6260644editdlrm
60-cdrom_id.rules10710644editdlrm
60-drm.rules4130644editdlrm
60-evdev.rules9740644editdlrm
60-fido-id.rules1650644editdlrm
60-input-id.rules2820644editdlrm
60-net.rules1290644editdlrm
60-persistent-alsa.rules6160644editdlrm
60-persistent-input.rules27100644editdlrm
60-persistent-storage-tape.rules16520644editdlrm
60-persistent-storage.rules65280644editdlrm
60-persistent-v4l.rules7690644editdlrm
60-raw.rules3260644editdlrm
60-sensor.rules7270644editdlrm
60-serial.rules11900644editdlrm
60-tpm-udev.rules2110644editdlrm
61-scsi-sg3_id.rules47770644editdlrm
63-fc-wwpn-id.rules6240644editdlrm
63-scsi-sg3_symlink.rules28850644editdlrm
64-btrfs.rules6160644editdlrm
66-kpartx.rules11490644editdlrm
68-del-part-nodes.rules11420644editdlrm
70-joystick.rules4320644editdlrm
70-mouse.rules7340644editdlrm
70-power-switch.rules5680644editdlrm
70-touchpad.rules4730644editdlrm
70-uaccess.rules26710644editdlrm
71-biosdevname.rules9950644editdlrm
71-prefixdevname.rules4030644editdlrm
71-seat.rules27580644editdlrm
73-idrac.rules3160644editdlrm
73-seat-late.rules6360644editdlrm
75-net-description.rules4520644editdlrm
75-probe_mtd.rules1740644editdlrm
78-sound-card.rules48160644editdlrm
80-drivers.rules6150644editdlrm
80-net-setup-link.rules2920644editdlrm
84-nm-drivers.rules5330644editdlrm
85-nm-unmanaged.rules20130644editdlrm
90-fwupd-devices.rules2810644editdlrm
90-iprutils.rules700644editdlrm
90-nm-thunderbolt.rules5880644editdlrm
90-vconsole.rules5100644editdlrm
91-drm-modeset.rules560644editdlrm
95-dm-notify.rules4830444editdlrm
98-kexec.rules6950644editdlrm
99-nfs.rules950644editdlrm
99-systemd.rules43670644editdlrm
Edit: /usr/lib/udev/rules.d/13-dm-disk.rules (1794B)
# 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!="add|change", 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{DM_SUSPENDED}=="1", GOTO="dm_end" ENV{DM_NOSCAN}=="1", GOTO="dm_watch" IMPORT{builtin}="blkid" 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", 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 generete 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"