mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 23:52:33 +00:00
nixos/rspamd: Preserve runtime directory when using socket activation
This commit is contained in:
parent
c2911034c3
commit
458bcc8f7a
|
@ -308,6 +308,7 @@ in
|
|||
ExecStart = "${pkgs.rspamd}/bin/rspamd ${optionalString cfg.debug "-d"} --user=${cfg.user} --group=${cfg.group} --pid=/run/rspamd.pid -c ${rspamdConfFile} -f";
|
||||
Restart = "always";
|
||||
RuntimeDirectory = "rspamd";
|
||||
RuntimeDirectoryPreserve = mkIf cfg.socketActivation true;
|
||||
PrivateTmp = true;
|
||||
Sockets = mkIf cfg.socketActivation (concatStringsSep " " allSocketNames);
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue