* main - lvmdbusd: Use ID_FS_TYPE UDev property in udevwatch
@ 2021-10-07 17:43 David Teigland
0 siblings, 0 replies; only message in thread
From: David Teigland @ 2021-10-07 17:43 UTC (permalink / raw)
To: lvm-devel
Gitweb: https://sourceware.org/git/?p=lvm2.git;a=commitdiff;h=61bd5e50232d72345b5d55ece237c05025a731ab
Commit: 61bd5e50232d72345b5d55ece237c05025a731ab
Parent: 5ac4b662df525039eda6a5fc461da60c6ea42c2a
Author: Vojtech Trefny <vtrefny@redhat.com>
AuthorDate: Wed Jun 2 17:17:40 2021 +0200
Committer: David Teigland <teigland@redhat.com>
CommitterDate: Thu Oct 7 12:42:44 2021 -0500
lvmdbusd: Use ID_FS_TYPE UDev property in udevwatch
'.ID_FS_TYPE_NEW' is a custom property added by an LVM UDev rule
which is now being removed and 'ID_FS_TYPE' has the same value.
Signed-off-by: Vojtech Trefny <vtrefny@redhat.com>
---
daemons/lvmdbusd/udevwatch.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/daemons/lvmdbusd/udevwatch.py b/daemons/lvmdbusd/udevwatch.py
index b53b18003..f9b3e4ad1 100644
--- a/daemons/lvmdbusd/udevwatch.py
+++ b/daemons/lvmdbusd/udevwatch.py
@@ -52,8 +52,8 @@ def filter_event(action, device):
# when appropriate.
refresh = False
- if '.ID_FS_TYPE_NEW' in device:
- fs_type_new = device['.ID_FS_TYPE_NEW']
+ if 'ID_FS_TYPE' in device:
+ fs_type_new = device['ID_FS_TYPE']
if 'LVM' in fs_type_new:
refresh = True
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2021-10-07 17:43 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-07 17:43 main - lvmdbusd: Use ID_FS_TYPE UDev property in udevwatch David Teigland
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.