mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
murmur: fix /tmp usage
This commit is contained in:
parent
f28bf68bc4
commit
e0de2d7ae6
1 changed files with 2 additions and 1 deletions
|
@ -80,7 +80,7 @@ in
|
|||
|
||||
pidfile = mkOption {
|
||||
type = types.path;
|
||||
default = "/tmp/murmurd.pid";
|
||||
default = "/run/murmur/murmurd.pid";
|
||||
description = "Path to PID file for Murmur daemon.";
|
||||
};
|
||||
|
||||
|
@ -252,6 +252,7 @@ in
|
|||
|
||||
serviceConfig = {
|
||||
Type = "forking";
|
||||
RuntimeDirectory = "murmur";
|
||||
PIDFile = cfg.pidfile;
|
||||
Restart = "always";
|
||||
User = "murmur";
|
||||
|
|
Loading…
Reference in a new issue