diff options
Diffstat (limited to 'src/mount.c')
-rw-r--r-- | src/mount.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mount.c b/src/mount.c index 08d5de28d7..5d5857f5af 100644 --- a/src/mount.c +++ b/src/mount.c @@ -266,7 +266,11 @@ static int mount_add_target_links(Mount *m) { return unit_add_two_dependencies(tu, UNIT_AFTER, UNIT_WANTS, UNIT(am), true); } else { - if (!noauto && handle) + /* Automatically add mount points that aren't natively + * configured to local-fs.target */ + if (!noauto && + handle && + !m->from_fragment) if (user || m->meta.manager->running_as == MANAGER_SYSTEM) if ((r = unit_add_dependency(tu, UNIT_WANTS, UNIT(m), true)) < 0) return r; |