forked from dan/liminix
fix chrony pidfile error
This commit is contained in:
parent
7b98724643
commit
1bca072509
@ -6,6 +6,7 @@
|
|||||||
}:
|
}:
|
||||||
params:
|
params:
|
||||||
let
|
let
|
||||||
|
name = "ntp"; # bad name, needs to be unique
|
||||||
inherit (liminix.services) longrun;
|
inherit (liminix.services) longrun;
|
||||||
inherit (lib) concatStringsSep mapAttrsToList;
|
inherit (lib) concatStringsSep mapAttrsToList;
|
||||||
configFile = p:
|
configFile = p:
|
||||||
@ -23,11 +24,15 @@ let
|
|||||||
++ (lib.optional (p.bindaddress != null) "bindaddress ${p.bindaddress}")
|
++ (lib.optional (p.bindaddress != null) "bindaddress ${p.bindaddress}")
|
||||||
++ (lib.optional (p.binddevice != null) "binddevice ${p.binddevice}")
|
++ (lib.optional (p.binddevice != null) "binddevice ${p.binddevice}")
|
||||||
++ (lib.optional (p.dumpdir != null) "dumpdir ${p.dumpdir}")
|
++ (lib.optional (p.dumpdir != null) "dumpdir ${p.dumpdir}")
|
||||||
|
++ [
|
||||||
|
"bindcmdaddress /" # disable unix socket
|
||||||
|
"pidfile /run/${name}.pid"
|
||||||
|
]
|
||||||
++ [p.extraConfig];
|
++ [p.extraConfig];
|
||||||
|
|
||||||
config = writeText "chrony.conf"
|
config = writeText "chrony.conf"
|
||||||
(concatStringsSep "\n" (configFile params));
|
(concatStringsSep "\n" (configFile params));
|
||||||
in longrun {
|
in longrun {
|
||||||
name = "ntp"; # bad name, needs to be unique
|
inherit name;
|
||||||
run = "${chrony}/bin/chronyd -f ${config} -d";
|
run = "${chrony}/bin/chronyd -f ${config} -d";
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user