diff options
author | Mariusz Tkaczyk <mariusz.tkaczyk@linux.intel.com> | 2022-01-14 16:44:33 +0100 |
---|---|---|
committer | Jes Sorensen <jsorensen@fb.com> | 2022-03-31 17:41:09 +0200 |
commit | cf9a109209aad285372b67306d54118af6fc522b (patch) | |
tree | ac5cb8b5fe29938aab0bdc05a7f9115bb4a399b7 /udev-md-raid-arrays.rules | |
parent | Grow_reshape: Add r0 grow size error message and update man (diff) | |
download | mdadm-cf9a109209aad285372b67306d54118af6fc522b.tar.xz mdadm-cf9a109209aad285372b67306d54118af6fc522b.zip |
udev: adapt rules to systemd v247
New events have been added in kernel 4.14 ("bind" and "unbind").
Systemd maintainer suggests to modify "add|change" branches.
This patches implements their suggestions. There is no issue yet because
new event types are not used in md.
Please see systemd announcement for details[1].
[1] https://lists.freedesktop.org/archives/systemd-devel/2020-November/045646.html
Signed-off-by: Mariusz Tkaczyk <mariusz.tkaczyk@linux.intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
Diffstat (limited to 'udev-md-raid-arrays.rules')
-rw-r--r-- | udev-md-raid-arrays.rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/udev-md-raid-arrays.rules b/udev-md-raid-arrays.rules index 13c9076e..2967ace1 100644 --- a/udev-md-raid-arrays.rules +++ b/udev-md-raid-arrays.rules @@ -3,7 +3,7 @@ SUBSYSTEM!="block", GOTO="md_end" # handle md arrays -ACTION!="add|change", GOTO="md_end" +ACTION=="remove", GOTO="md_end" KERNEL!="md*", GOTO="md_end" # partitions have no md/{array_state,metadata_version}, but should not |