valeriyvdovin / rpms / systemd

Forked from rpms/systemd 3 years ago
Clone

Blame SOURCES/0029-unit-use-weaker-dependencies-between-mount-and-devic.patch

923a60
From 1c0e8e9ce84cd74a20a60b98ab3a39d75d05b45f Mon Sep 17 00:00:00 2001
923a60
From: Lennart Poettering <lennart@poettering.net>
923a60
Date: Wed, 25 Feb 2015 22:05:14 +0100
923a60
Subject: [PATCH] unit: use weaker dependencies between mount and device units
923a60
 in --user mode
923a60
923a60
When running in user mode unmounting of mount units when a device
923a60
vanishes is unlikely to work, and even if it would work is already done
923a60
by PID 1 anyway. HEnce, when creating implicit dependencies between
923a60
mount units and their backing devices, created a Wants= type dependency
923a60
in --user mode, but leave a BindsTo= dependency in --system mode.
923a60
923a60
(cherry picked from commit 5bd4b173605142c7be493aa4d958ebaef21f421d)
923a60
---
923a60
 src/core/unit.c | 2 +-
923a60
 1 file changed, 1 insertion(+), 1 deletion(-)
923a60
923a60
diff --git a/src/core/unit.c b/src/core/unit.c
923a60
index ee8e607c27..9f1e55e2f1 100644
923a60
--- a/src/core/unit.c
923a60
+++ b/src/core/unit.c
923a60
@@ -2845,7 +2845,7 @@ int unit_add_node_link(Unit *u, const char *what, bool wants) {
923a60
         if (r < 0)
923a60
                 return r;
923a60
 
923a60
-        r = unit_add_two_dependencies(u, UNIT_AFTER, UNIT_BINDS_TO, device, true);
923a60
+        r = unit_add_two_dependencies(u, UNIT_AFTER, u->manager->running_as == SYSTEMD_SYSTEM ? UNIT_BINDS_TO : UNIT_WANTS, device, true);
923a60
         if (r < 0)
923a60
                 return r;
923a60