diff options
Diffstat (limited to 'src/automount.c')
-rw-r--r-- | src/automount.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/automount.c b/src/automount.c index 462f3170ba..b45cbcf533 100644 --- a/src/automount.c +++ b/src/automount.c @@ -154,6 +154,9 @@ static int automount_add_default_dependencies(Automount *a) { if (a->meta.manager->running_as == MANAGER_SYSTEM) { + if ((r = unit_add_dependency_by_name(UNIT(a), UNIT_BEFORE, SPECIAL_BASIC_TARGET, NULL, true)) < 0) + return r; + if ((r = unit_add_two_dependencies_by_name(UNIT(a), UNIT_BEFORE, UNIT_CONFLICTS, SPECIAL_UMOUNT_TARGET, NULL, true)) < 0) return r; } |