/usr/lib/udev/rules.d
NameSizeModeActions
01-md-raid-creating.rules3210644editdlrm
40-vm-hotadd.rules6550644editdlrm
50-apport.rules1650644editdlrm
50-firmware.rules2100644editdlrm
50-udev-default.rules39310644editdlrm
55-dm.rules72740644editdlrm
55-scsi-sg3_id.rules47810644editdlrm
56-dm-mpath.rules45300644editdlrm
56-dm-parts.rules14420644editdlrm
56-lvm.rules24200644editdlrm
58-scsi-sg3_symlink.rules28850644editdlrm
60-autosuspend-chromiumos.rules85950644editdlrm
60-block.rules7030644editdlrm
60-cdrom_id.rules10710644editdlrm
60-drm.rules4130644editdlrm
60-evdev.rules9900644editdlrm
60-fido-id.rules3940644editdlrm
60-input-id.rules2820644editdlrm
60-multipath.rules38710644editdlrm
60-open-vm-tools.rules2500644editdlrm
60-persistent-alsa.rules6160644editdlrm
60-persistent-input.rules27100644editdlrm
60-persistent-storage-dm.rules17940644editdlrm
60-persistent-storage-tape.rules21350644editdlrm
60-persistent-storage.rules77820644editdlrm
60-persistent-v4l.rules7690644editdlrm
60-sensor.rules7360644editdlrm
60-serial.rules11900644editdlrm
60-tpm-udev.rules2110644editdlrm
61-autosuspend-manual.rules5650644editdlrm
61-persistent-storage-android.rules4560644editdlrm
63-md-raid-arrays.rules21300644editdlrm
64-btrfs-dm.rules3870644editdlrm
64-btrfs.rules6120644editdlrm
64-md-raid-assembly.rules14440644editdlrm
66-azure-ephemeral.rules19510644editdlrm
66-snapd-autoimport.rules1900644editdlrm
68-del-part-nodes.rules11420644editdlrm
69-bcache.rules10440644editdlrm
69-lvm-metad.rules66050644editdlrm
69-md-clustered-confirm-device.rules8460644editdlrm
70-iscsi-disk.rules2530644editdlrm
70-iscsi-network-interface.rules2260644editdlrm
70-joystick.rules4320644editdlrm
70-mouse.rules7340644editdlrm
70-power-switch.rules5680644editdlrm
70-touchpad.rules4730644editdlrm
70-uaccess.rules28000644editdlrm
71-power-switch-proliant.rules4610644editdlrm
71-seat.rules37820644editdlrm
73-seat-late.rules6360644editdlrm
73-special-net-names.rules9690644editdlrm
75-net-description.rules4520644editdlrm
75-probe_mtd.rules1740644editdlrm
78-graphics-card.rules9650644editdlrm
78-sound-card.rules48160644editdlrm
80-debian-compat.rules13750644editdlrm
80-drivers.rules6150644editdlrm
80-net-setup-link.rules2950644editdlrm
81-net-dhcp.rules5280644editdlrm
85-hdparm.rules820644editdlrm
90-bolt.rules3500644editdlrm
90-console-setup.rules2650644editdlrm
90-fwupd-devices.rules14720644editdlrm
95-dm-notify.rules4790644editdlrm
95-kpartx.rules13350644editdlrm
96-e2scrub.rules1710644editdlrm
99-systemd.rules47130644editdlrm
99-vmware-scsi-udev.rules4330644editdlrm
Edit: /usr/lib/udev/rules.d/60-persistent-storage-dm.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"