fs: have nodes require their parent instead of the weaker want

this may fix it so spurious (failed) mounts of ~/private *don't* create a bunch of directories that later cause a real mount to be impossible
This commit is contained in:
2023-07-10 05:58:30 +00:00
parent 5188ddf398
commit 23fb37a3e9

View File

@@ -210,7 +210,7 @@ let
}; };
after = gen-opt.depends; after = gen-opt.depends;
wants = gen-opt.depends; requires = gen-opt.depends;
# prevent systemd making this unit implicitly dependent on sysinit.target. # prevent systemd making this unit implicitly dependent on sysinit.target.
# see: <https://www.freedesktop.org/software/systemd/man/systemd.special.html> # see: <https://www.freedesktop.org/software/systemd/man/systemd.special.html>
unitConfig.DefaultDependencies = "no"; unitConfig.DefaultDependencies = "no";