mirror of
https://github.com/AuxXxilium/eudev.git
synced 2025-01-24 16:10:11 +07:00
rules: update persistent storage rules to use inotify watches
This commit is contained in:
parent
bd284db142
commit
f24036d63b
2
NEWS
2
NEWS
@ -3,6 +3,8 @@ udev 138
|
||||
Device nodes can be watched for changes with inotify with OPTIONS="watch". If
|
||||
closed after being opened for writing, a "change" uevent will occur.
|
||||
|
||||
/dev/disk/by-*/* symlinks will be automatically updated.
|
||||
|
||||
udev 137
|
||||
========
|
||||
Bugfixes.
|
||||
|
@ -57,8 +57,8 @@ ENV{DEVTYPE}=="disk", KERNEL!="sd*|sr*", ATTR{removable}=="1", GOTO="persistent_
|
||||
# probe filesystem metadata of optical drives which have a media inserted
|
||||
KERNEL=="sr*", ENV{ID_CDROM_MEDIA_TRACK_COUNT}=="?*", IMPORT{program}="vol_id --export --skip-raid --offset=$env{ID_CDROM_MEDIA_SESSION_LAST_OFFSET} $tempnode"
|
||||
|
||||
# probe filesystem metadata of disks
|
||||
KERNEL!="sr*", IMPORT{program}="vol_id --export $tempnode"
|
||||
# probe filesystem metadata of disks, watch for future changes
|
||||
KERNEL!="sr*", IMPORT{program}="vol_id --export $tempnode", OPTIONS+="watch"
|
||||
|
||||
# by-label/by-uuid links (filesystem metadata)
|
||||
ENV{ID_FS_USAGE}=="filesystem|other|crypto", ENV{ID_FS_UUID_ENC}=="?*", SYMLINK+="disk/by-uuid/$env{ID_FS_UUID_ENC}"
|
||||
|
Loading…
Reference in New Issue
Block a user