1
0
mirror of https://github.com/systemd/systemd.git synced 2024-10-30 06:25:37 +03:00

core/mount: fix default target for /sysusr/usr and its child

Follow-up for 29a24ab28e.
This commit is contained in:
Yu Watanabe 2023-02-15 14:23:34 +09:00 committed by Luca Boccassi
parent 7f9a6295c3
commit dbfc096095

View File

@ -490,6 +490,10 @@ static int mount_add_default_ordering_dependencies(Mount *m, MountParameters *p,
after = NULL;
before = isempty(e) ? SPECIAL_INITRD_ROOT_FS_TARGET : SPECIAL_INITRD_FS_TARGET;
} else if (in_initrd() && path_startswith(m->where, "/sysusr/usr")) {
after = NULL;
before = SPECIAL_INITRD_USR_FS_TARGET;
} else if (mount_is_network(p)) {
after = SPECIAL_REMOTE_FS_PRE_TARGET;
before = SPECIAL_REMOTE_FS_TARGET;