From ea4ebf86d25fb9c489d1cf1ca42371b7e2e782aa Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Sun, 29 Aug 2021 21:20:43 +0900 Subject: [PATCH] core/mount: add implicit unit dependencies even if when mount unit is generated from /proc/self/mountinfo Hopefully fixes #20566. (cherry picked from commit aebff2e7ce209fc2d75b894a3ae8b80f6f36ec11) Resolves: #2019468 --- src/core/mount.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/core/mount.c b/src/core/mount.c index 1fd3102ad3..f2c85e0e5d 100644 --- a/src/core/mount.c +++ b/src/core/mount.c @@ -1582,6 +1582,10 @@ static int mount_setup_new_unit( if (r < 0) return r; + r = mount_add_non_exec_dependencies(MOUNT(u)); + if (r < 0) + return r; + /* This unit was generated because /proc/self/mountinfo reported it. Remember this, so that by the time we load * the unit file for it (and thus add in extra deps right after) we know what source to attributes the deps * to. */