forked from pool/systemd
33 lines
1.1 KiB
Diff
33 lines
1.1 KiB
Diff
From c9af1be90db5a29ac86605c67bc2bb4bc5780520 Mon Sep 17 00:00:00 2001
|
|
From: Hannes Reinecke <hare@suse.de>
|
|
Date: Thu, 12 Jun 2014 12:25:03 +0200
|
|
Subject: [PATCH] 99-systemd.rules: Ignore devices with 'SYSTEMD_READY=0'
|
|
|
|
Whenever a rule sets 'SYSTEMD_READY=0' it tries to indicate
|
|
that systemd should ignore this device. So we should not
|
|
set the 'systemd' tag in these cases; otherwise systemd
|
|
will pick up the device.
|
|
|
|
References: bnc#881942
|
|
|
|
Signed-off-by: Hannes Reinecke <hare@suse.de>
|
|
---
|
|
rules/99-systemd.rules.in | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/rules/99-systemd.rules.in b/rules/99-systemd.rules.in
|
|
index db72373..11ee262 100644
|
|
--- a/rules/99-systemd.rules.in
|
|
+++ b/rules/99-systemd.rules.in
|
|
@@ -11,6 +11,7 @@ SUBSYSTEM=="tty", KERNEL=="tty[a-zA-Z]*|hvc*|xvc*|hvsi*|ttysclp*|sclp_line*|3270
|
|
|
|
KERNEL=="vport*", TAG+="systemd"
|
|
|
|
+SUBSYSTEM=="block", KERNEL!="ram*", ENV{SYSTEMD_READY}=="0", GOTO="systemd_end"
|
|
SUBSYSTEM=="block", KERNEL!="ram*", TAG+="systemd"
|
|
SUBSYSTEM=="block", KERNEL!="ram*", ENV{DM_UDEV_DISABLE_OTHER_RULES_FLAG}=="1", ENV{SYSTEMD_READY}="0"
|
|
|
|
--
|
|
1.8.4.5
|
|
|