nixos/redmine: Drop pidfile

There is no use for the pidfile. So drop it.

Signed-off-by: Felix Singer <felixsinger@posteo.net>
This commit is contained in:
Felix Singer
2026-07-16 07:30:18 +02:00
parent 6f6ae02b17
commit 97451cd267

View File

@@ -460,7 +460,7 @@ in
Group = cfg.group;
TimeoutSec = "300";
WorkingDirectory = "${cfg.package}/share/redmine";
ExecStart = "${bundle} exec rails server -u webrick -e production -b ${toString cfg.address} -p ${toString cfg.port} -P '${cfg.stateDir}/redmine.pid'";
ExecStart = "${bundle} exec rails server -u webrick -e production -b ${toString cfg.address} -p ${toString cfg.port}";
RuntimeDirectory = "redmine";
RuntimeDirectoryMode = "0750";
AmbientCapabilities = "";