diff options
-rw-r--r-- | src/core/mount.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/core/mount.c b/src/core/mount.c index c961677ff9..e62a5f1b17 100644 --- a/src/core/mount.c +++ b/src/core/mount.c @@ -1438,6 +1438,19 @@ static int mount_add_one( } } + if (m->running_as == SYSTEMD_SYSTEM) { + const char* target; + + target = mount_needs_network(options, fstype) ? SPECIAL_REMOTE_FS_TARGET : NULL; + /* _netdev option may have shown up late, or on a + * remount. Add remote-fs dependencies, even though + * local-fs ones may already be there */ + if (target) { + unit_add_dependency_by_name(u, UNIT_BEFORE, target, NULL, true); + load_extras = true; + } + } + if (u->load_state == UNIT_NOT_FOUND) { u->load_state = UNIT_LOADED; u->load_error = 0; |