mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Don't restart systemd-journal-flush
It only needs to be started during boot. Starting it at other times shouldn't hurt, except that if systemd-journald is restarting at the same time, the latter might not have a SIGUSR1 signal handler installed yet, so it might be killed by systemd-journal-flush. (At least that's my theory about the dead systemd-journald instances in the build farm...)
This commit is contained in:
parent
b4c971b14a
commit
1a1442db74
1 changed files with 1 additions and 0 deletions
|
@ -825,6 +825,7 @@ in
|
|||
systemd.services."user@".restartIfChanged = false;
|
||||
|
||||
systemd.services.systemd-remount-fs.restartIfChanged = false;
|
||||
systemd.services.systemd-journal-flush.restartIfChanged = false;
|
||||
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue