nixos/pdns-recursor: deprecate settings, add yaml-settings
This commit is contained in:
@@ -38,12 +38,34 @@ let
|
|||||||
else
|
else
|
||||||
"";
|
"";
|
||||||
|
|
||||||
configDir = pkgs.writeTextDir "recursor.conf" (
|
settingsFormat = pkgs.formats.yaml { };
|
||||||
concatStringsSep "\n" (flip mapAttrsToList cfg.settings (name: val: "${name}=${serialize val}"))
|
|
||||||
);
|
|
||||||
|
|
||||||
mkDefaultAttrs = mapAttrs (n: v: mkDefault v);
|
mkDefaultAttrs = mapAttrs (n: v: mkDefault v);
|
||||||
|
|
||||||
|
mkForwardZone = mapAttrsToList (
|
||||||
|
zone: uri: {
|
||||||
|
inherit zone;
|
||||||
|
forwarders = [ uri ];
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
configFile =
|
||||||
|
if cfg.old-settings != { } then
|
||||||
|
# Convert recursor.conf to recursor.yml and merge it
|
||||||
|
let
|
||||||
|
conf = pkgs.writeText "recursor.conf" (
|
||||||
|
concatStringsSep "\n" (mapAttrsToList (name: val: "${name}=${serialize val}") cfg.old-settings)
|
||||||
|
);
|
||||||
|
|
||||||
|
yaml = settingsFormat.generate "recursor.yml" cfg.yaml-settings;
|
||||||
|
in
|
||||||
|
pkgs.runCommand "recursor-merged.yml" { } ''
|
||||||
|
${pkgs.pdns-recursor}/bin/rec_control show-yaml --config ${conf} > override.yml
|
||||||
|
${pkgs.yq-go}/bin/yq '. *= load("override.yml")' ${yaml} > $out
|
||||||
|
''
|
||||||
|
else
|
||||||
|
settingsFormat.generate "recursor.yml" cfg.yaml-settings;
|
||||||
|
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options.services.pdns-recursor = {
|
options.services.pdns-recursor = {
|
||||||
@@ -175,7 +197,7 @@ in
|
|||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
settings = mkOption {
|
old-settings = mkOption {
|
||||||
type = configType;
|
type = configType;
|
||||||
default = { };
|
default = { };
|
||||||
example = literalExpression ''
|
example = literalExpression ''
|
||||||
@@ -184,11 +206,34 @@ in
|
|||||||
log-common-errors = true;
|
log-common-errors = true;
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
|
description = ''
|
||||||
|
Older PowerDNS Recursor settings. Use this option to configure
|
||||||
|
Recursor settings not exposed in a NixOS option or to bypass one.
|
||||||
|
See the full documentation at
|
||||||
|
<https://doc.powerdns.com/recursor/settings.html>
|
||||||
|
for the available options.
|
||||||
|
|
||||||
|
::: {.warning}
|
||||||
|
This option is provided for backward compatibility only
|
||||||
|
and will be removed in the next release of NixOS.
|
||||||
|
:::
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
yaml-settings = mkOption {
|
||||||
|
type = settingsFormat.type;
|
||||||
|
default = { };
|
||||||
|
example = literalExpression ''
|
||||||
|
{
|
||||||
|
loglevel = 8;
|
||||||
|
log-common-errors = true;
|
||||||
|
}
|
||||||
|
'';
|
||||||
description = ''
|
description = ''
|
||||||
PowerDNS Recursor settings. Use this option to configure Recursor
|
PowerDNS Recursor settings. Use this option to configure Recursor
|
||||||
settings not exposed in a NixOS option or to bypass one.
|
settings not exposed in a NixOS option or to bypass one.
|
||||||
See the full documentation at
|
See the full documentation at
|
||||||
<https://doc.powerdns.com/recursor/settings.html>
|
<https://doc.powerdns.com/recursor/yamlsettings.html>
|
||||||
for the available options.
|
for the available options.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
@@ -205,42 +250,44 @@ in
|
|||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
|
||||||
environment.etc."pdns-recursor".source = configDir;
|
environment.etc."/pdns-recursor/recursor.yml".source = configFile;
|
||||||
|
|
||||||
services.pdns-recursor.settings = mkDefaultAttrs {
|
services.pdns-recursor.yaml-settings = {
|
||||||
local-address = cfg.dns.address;
|
incoming = mkDefaultAttrs {
|
||||||
local-port = cfg.dns.port;
|
listen = cfg.dns.address;
|
||||||
allow-from = cfg.dns.allowFrom;
|
port = cfg.dns.port;
|
||||||
|
allow_from = cfg.dns.allowFrom;
|
||||||
|
};
|
||||||
|
|
||||||
webserver-address = cfg.api.address;
|
webservice = mkDefaultAttrs {
|
||||||
webserver-port = cfg.api.port;
|
address = cfg.api.address;
|
||||||
webserver-allow-from = cfg.api.allowFrom;
|
port = cfg.api.port;
|
||||||
|
allow_from = cfg.api.allowFrom;
|
||||||
|
};
|
||||||
|
|
||||||
forward-zones = mapAttrsToList (zone: uri: "${zone}.=${uri}") cfg.forwardZones;
|
recursor = mkDefaultAttrs {
|
||||||
forward-zones-recurse = mapAttrsToList (zone: uri: "${zone}.=${uri}") cfg.forwardZonesRecurse;
|
forward_zones = mkForwardZone cfg.forwardZones;
|
||||||
export-etc-hosts = cfg.exportHosts;
|
forward_zones_recurse = mkForwardZone cfg.forwardZonesRecurse;
|
||||||
dnssec = cfg.dnssecValidation;
|
export_etc_hosts = cfg.exportHosts;
|
||||||
serve-rfc1918 = cfg.serveRFC1918;
|
serve_rfc1918 = cfg.serveRFC1918;
|
||||||
lua-config-file = pkgs.writeText "recursor.lua" cfg.luaConfig;
|
lua_config_file = pkgs.writeText "recursor.lua" cfg.luaConfig;
|
||||||
|
daemon = false;
|
||||||
|
write_pid = false;
|
||||||
|
};
|
||||||
|
|
||||||
daemon = false;
|
dnssec = mkDefaultAttrs {
|
||||||
write-pid = false;
|
validation = cfg.dnssecValidation;
|
||||||
log-timestamp = false;
|
};
|
||||||
disable-syslog = true;
|
|
||||||
|
logging = mkDefaultAttrs {
|
||||||
|
timestamp = false;
|
||||||
|
disable_syslog = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd.packages = [ pkgs.pdns-recursor ];
|
systemd.packages = [ pkgs.pdns-recursor ];
|
||||||
|
|
||||||
systemd.services.pdns-recursor = {
|
systemd.services.pdns-recursor.wantedBy = [ "multi-user.target" ];
|
||||||
wantedBy = [ "multi-user.target" ];
|
|
||||||
|
|
||||||
serviceConfig = {
|
|
||||||
ExecStart = [
|
|
||||||
""
|
|
||||||
"${pkgs.pdns-recursor}/bin/pdns_recursor --config-dir=${configDir}"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
users.users.pdns-recursor = {
|
users.users.pdns-recursor = {
|
||||||
isSystemUser = true;
|
isSystemUser = true;
|
||||||
@@ -250,6 +297,15 @@ in
|
|||||||
|
|
||||||
users.groups.pdns-recursor = { };
|
users.groups.pdns-recursor = { };
|
||||||
|
|
||||||
|
warnings = lib.optional (cfg.old-settings != { }) ''
|
||||||
|
pdns-recursor has changed its configuration file format from pdns-recursor.conf
|
||||||
|
(mapped to `services.pdns-recursor.old-settings`) to the newer pdns-recursor.yml
|
||||||
|
(mapped to `services.pdns-recursor.yaml-settings`).
|
||||||
|
|
||||||
|
Support for the older format will be removed in a future version, so please migrate
|
||||||
|
your settings over. See <https://doc.powerdns.com/recursor/yamlsettings.html>.
|
||||||
|
'';
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
@@ -258,6 +314,19 @@ in
|
|||||||
"pdns-recursor"
|
"pdns-recursor"
|
||||||
"extraConfig"
|
"extraConfig"
|
||||||
] "To change extra Recursor settings use services.pdns-recursor.settings instead.")
|
] "To change extra Recursor settings use services.pdns-recursor.settings instead.")
|
||||||
|
|
||||||
|
(mkRenamedOptionModule
|
||||||
|
[
|
||||||
|
"services"
|
||||||
|
"pdns-recursor"
|
||||||
|
"settings"
|
||||||
|
]
|
||||||
|
[
|
||||||
|
"services"
|
||||||
|
"pdns-recursor"
|
||||||
|
"old-settings"
|
||||||
|
]
|
||||||
|
)
|
||||||
];
|
];
|
||||||
|
|
||||||
meta.maintainers = with lib.maintainers; [ rnhmjoj ];
|
meta.maintainers = with lib.maintainers; [ rnhmjoj ];
|
||||||
|
|||||||
Reference in New Issue
Block a user