mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 06:01:15 +00:00
Merge pull request #9317 from dfoxfranke/oidentd-ipv6
oidentd: listen on IPv6
This commit is contained in:
commit
d6fd3c4270
|
@ -28,7 +28,9 @@ with lib;
|
|||
jobs.oidentd =
|
||||
{ startOn = "started network-interfaces";
|
||||
daemonType = "fork";
|
||||
exec = "${pkgs.oidentd}/sbin/oidentd -u oidentd -g nogroup";
|
||||
exec = "${pkgs.oidentd}/sbin/oidentd -u oidentd -g nogroup" +
|
||||
optionalString config.networking.enableIPv6 " -a ::"
|
||||
;
|
||||
};
|
||||
|
||||
users.extraUsers.oidentd = {
|
||||
|
|
Loading…
Reference in a new issue