From 195baa1bd82e2d0b3fe460d68404f09ec8d9de4b Mon Sep 17 00:00:00 2001 From: Tom Yan Date: Tue, 31 Aug 2021 21:46:04 +0800 Subject: [PATCH] core/mount: also add default before dependency for automount mount units The dependency should not prevent automount from working as expected, and we do not want them to be stopped too early if they are active. --- src/core/mount.c | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/core/mount.c b/src/core/mount.c index 35b56426d41..23ffabd60d9 100644 --- a/src/core/mount.c +++ b/src/core/mount.c @@ -84,14 +84,6 @@ static MountParameters* get_mount_parameters(Mount *m) { return get_mount_parameters_fragment(m); } -static bool mount_is_automount(const MountParameters *p) { - assert(p); - - return fstab_test_option(p->options, - "comment=systemd.automount\0" - "x-systemd.automount\0"); -} - static bool mount_is_network(const MountParameters *p) { assert(p); @@ -484,7 +476,7 @@ static int mount_add_default_ordering_dependencies( before = SPECIAL_LOCAL_FS_TARGET; } - if (!mount_is_nofail(m) && !mount_is_automount(p)) { + if (!mount_is_nofail(m)) { r = unit_add_dependency_by_name(UNIT(m), UNIT_BEFORE, before, true, mask); if (r < 0) return r; -- 2.47.3