|
|
ac3a84 |
From c5f1cc8f23dfe545c0d03eae88bbd91e8a1db226 Mon Sep 17 00:00:00 2001
|
|
|
4295f9 |
From: Lukas Nykryn <lnykryn@redhat.com>
|
|
|
4295f9 |
Date: Mon, 5 Sep 2016 12:47:09 +0200
|
|
|
4295f9 |
Subject: [PATCH] unit: don't add Requires for tmp.mount
|
|
|
4295f9 |
|
|
|
4295f9 |
rhel-only
|
|
|
ac3a84 |
Related: #2138081
|
|
|
4295f9 |
---
|
|
|
4295f9 |
src/core/mount.c | 2 +-
|
|
|
4295f9 |
src/core/unit.c | 2 +-
|
|
|
4295f9 |
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
4295f9 |
|
|
|
4295f9 |
diff --git a/src/core/mount.c b/src/core/mount.c
|
|
|
ac3a84 |
index 5e8a6ead61..ba55f7dd86 100644
|
|
|
4295f9 |
--- a/src/core/mount.c
|
|
|
4295f9 |
+++ b/src/core/mount.c
|
|
|
ac3a84 |
@@ -336,7 +336,7 @@ static int mount_add_mount_dependencies(Mount *m) {
|
|
|
4295f9 |
if (r < 0)
|
|
|
4295f9 |
return r;
|
|
|
4295f9 |
|
|
|
4295f9 |
- if (UNIT(m)->fragment_path) {
|
|
|
4295f9 |
+ if (UNIT(m)->fragment_path && !streq(UNIT(m)->id, "tmp.mount")) {
|
|
|
4295f9 |
/* If we have fragment configuration, then make this dependency required */
|
|
|
4295f9 |
r = unit_add_dependency(other, UNIT_REQUIRES, UNIT(m), true, UNIT_DEPENDENCY_PATH);
|
|
|
4295f9 |
if (r < 0)
|
|
|
4295f9 |
diff --git a/src/core/unit.c b/src/core/unit.c
|
|
|
ac3a84 |
index 1fad0b0ac8..5af44aaf4a 100644
|
|
|
4295f9 |
--- a/src/core/unit.c
|
|
|
4295f9 |
+++ b/src/core/unit.c
|
|
|
ac3a84 |
@@ -1541,7 +1541,7 @@ static int unit_add_mount_dependencies(Unit *u) {
|
|
|
4295f9 |
return r;
|
|
|
ac3a84 |
changed = changed || r > 0;
|
|
|
4295f9 |
|
|
|
4295f9 |
- if (m->fragment_path) {
|
|
|
4295f9 |
+ if (m->fragment_path && !streq(m->id, "tmp.mount")) {
|
|
|
4295f9 |
r = unit_add_dependency(u, UNIT_REQUIRES, m, true, di.origin_mask);
|
|
|
4295f9 |
if (r < 0)
|
|
|
4295f9 |
return r;
|