Merge pull request #154320 from abbradar/nscd-unit

nscd service: fix ordering and start automatically
This commit is contained in:
Florian Klink
2022-01-11 18:47:40 +01:00
committed by GitHub
+3 -1
View File
@@ -50,7 +50,9 @@ in
systemd.services.nscd =
{ description = "Name Service Cache Daemon";
wantedBy = [ "nss-lookup.target" "nss-user-lookup.target" ];
before = [ "nss-lookup.target" "nss-user-lookup.target" ];
wants = [ "nss-lookup.target" "nss-user-lookup.target" ];
wantedBy = [ "multi-user.target" ];
environment = { LD_LIBRARY_PATH = nssModulesPath; };