diff options
Diffstat (limited to 'src/mount.c')
-rw-r--r-- | src/mount.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mount.c b/src/mount.c index 284fcb94b2..53edf9d560 100644 --- a/src/mount.c +++ b/src/mount.c @@ -365,6 +365,7 @@ static int mount_add_device_links(Mount *m) { Unit *fsck; /* Let's add in the fsck service */ + /* aka SPECIAL_FSCK_SERVICE */ if (!(name = unit_name_from_path_instance("fsck", p->what, ".service"))) return -ENOMEM; @@ -393,7 +394,7 @@ static int mount_add_default_dependencies(Mount *m) { if (m->meta.manager->running_as == MANAGER_SYSTEM && !path_equal(m->where, "/")) { - if ((r = unit_add_dependency_by_name(UNIT(m), UNIT_AFTER, SPECIAL_FSCK_TARGET, NULL, true)) < 0) + if ((r = unit_add_dependency_by_name(UNIT(m), UNIT_BEFORE, SPECIAL_QUOTACHECK_TARGET, NULL, true)) < 0) return r; if ((r = unit_add_two_dependencies_by_name(UNIT(m), UNIT_BEFORE, UNIT_CONFLICTED_BY, SPECIAL_UMOUNT_TARGET, NULL, true)) < 0) |