923a60
From d77ced281c6d1f47b5dfc3abff6817d8f5756af9 Mon Sep 17 00:00:00 2001
923a60
From: Lukas Nykryn <lnykryn@redhat.com>
923a60
Date: Thu, 25 Feb 2016 15:15:04 +0100
923a60
Subject: [PATCH] rules: set SYSTEMD_READY=0 on
923a60
 DM_UDEV_DISABLE_OTHER_RULES_FLAG=1 only with ADD event
923a60
923a60
The "SYSTEMD_READY=0" will cause automatic unmount
923a60
of mountpoint that is on top of such DM device
923a60
if this is used with multipath which sets
923a60
DM_UDEV_DISABLE_OTHER_RULES_FLAG in case
923a60
we have a CHANGE event thatcomes after DM multipath
923a60
device reload when one of the paths is down or up.
923a60
923a60
See https://bugzilla.redhat.com/show_bug.cgi?id=1312011
923a60
923a60
Cherry-picked from: 83a3642f617975d596b5001b1699c3d16773a6e5
923a60
Resolves: #1312011
923a60
---
923a60
 rules/99-systemd.rules.in | 2 +-
923a60
 1 file changed, 1 insertion(+), 1 deletion(-)
923a60
923a60
diff --git a/rules/99-systemd.rules.in b/rules/99-systemd.rules.in
923a60
index b66d727a48..a4f4bf3dfd 100644
923a60
--- a/rules/99-systemd.rules.in
923a60
+++ b/rules/99-systemd.rules.in
923a60
@@ -12,7 +12,7 @@ SUBSYSTEM=="tty", KERNEL=="tty[a-zA-Z]*|hvc*|xvc*|hvsi*|ttysclp*|sclp_line*|3270
923a60
 KERNEL=="vport*", TAG+="systemd"
923a60
 
923a60
 SUBSYSTEM=="block", KERNEL!="ram*", TAG+="systemd"
923a60
-SUBSYSTEM=="block", KERNEL!="ram*", ENV{DM_UDEV_DISABLE_OTHER_RULES_FLAG}=="1", ENV{SYSTEMD_READY}="0"
923a60
+SUBSYSTEM=="block", KERNEL!="ram*", ACTION=="add", ENV{DM_UDEV_DISABLE_OTHER_RULES_FLAG}=="1", ENV{SYSTEMD_READY}="0"
923a60
 
923a60
 # Ignore encrypted devices with no identified superblock on it, since
923a60
 # we are probably still calling mke2fs or mkswap on it.