2011-03-24 17:23:28 +01:00
|
|
|
# Module for rdnssd, a daemon that configures DNS servers in
|
|
|
|
# /etc/resolv/conf from IPv6 RDNSS advertisements.
|
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
2011-03-24 17:23:28 +01:00
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
with lib;
|
2015-04-05 06:20:04 +02:00
|
|
|
let
|
|
|
|
mergeHook = pkgs.writeScript "rdnssd-merge-hook" ''
|
2018-03-01 20:38:53 +01:00
|
|
|
#! ${pkgs.runtimeShell} -e
|
2015-04-05 06:20:04 +02:00
|
|
|
${pkgs.openresolv}/bin/resolvconf -u
|
|
|
|
'';
|
|
|
|
in
|
2011-03-24 17:23:28 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2011-03-24 17:23:28 +01:00
|
|
|
services.rdnssd.enable = mkOption {
|
2020-04-20 20:05:26 +02:00
|
|
|
type = types.bool;
|
2011-03-25 10:29:22 +01:00
|
|
|
default = false;
|
|
|
|
#default = config.networking.enableIPv6;
|
2011-03-24 17:23:28 +01:00
|
|
|
description =
|
|
|
|
''
|
|
|
|
Whether to enable the RDNSS daemon
|
|
|
|
(<command>rdnssd</command>), which configures DNS servers in
|
|
|
|
<filename>/etc/resolv.conf</filename> from RDNSS
|
|
|
|
advertisements sent by IPv6 routers.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
|
|
|
config = mkIf config.services.rdnssd.enable {
|
|
|
|
|
2019-07-15 19:18:49 +02:00
|
|
|
assertions = [{
|
|
|
|
assertion = config.networking.resolvconf.enable;
|
|
|
|
message = "rdnssd needs resolvconf to work (probably something sets up a static resolv.conf)";
|
|
|
|
}];
|
|
|
|
|
2015-04-05 06:20:04 +02:00
|
|
|
systemd.services.rdnssd = {
|
|
|
|
description = "RDNSS daemon";
|
|
|
|
after = [ "network.target" ];
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
|
|
|
|
preStart = ''
|
|
|
|
# Create the proper run directory
|
|
|
|
mkdir -p /run/rdnssd
|
|
|
|
touch /run/rdnssd/resolv.conf
|
|
|
|
chown -R rdnssd /run/rdnssd
|
|
|
|
|
|
|
|
# Link the resolvconf interfaces to rdnssd
|
|
|
|
rm -f /run/resolvconf/interfaces/rdnssd
|
|
|
|
ln -s /run/rdnssd/resolv.conf /run/resolvconf/interfaces/rdnssd
|
|
|
|
${mergeHook}
|
|
|
|
'';
|
|
|
|
|
|
|
|
postStop = ''
|
|
|
|
rm -f /run/resolvconf/interfaces/rdnssd
|
|
|
|
${mergeHook}
|
|
|
|
'';
|
|
|
|
|
|
|
|
serviceConfig = {
|
|
|
|
ExecStart = "@${pkgs.ndisc6}/bin/rdnssd rdnssd -p /run/rdnssd/rdnssd.pid -r /run/rdnssd/resolv.conf -u rdnssd -H ${mergeHook}";
|
|
|
|
Type = "forking";
|
|
|
|
PIDFile = "/run/rdnssd/rdnssd.pid";
|
2011-03-24 17:23:28 +01:00
|
|
|
};
|
2015-04-05 06:20:04 +02:00
|
|
|
};
|
|
|
|
|
2018-06-30 01:58:35 +02:00
|
|
|
users.users.rdnssd = {
|
2015-04-05 06:20:04 +02:00
|
|
|
description = "RDNSSD Daemon User";
|
2021-09-18 14:00:00 +02:00
|
|
|
isSystemUser = true;
|
|
|
|
group = "rdnssd";
|
2015-04-05 06:20:04 +02:00
|
|
|
};
|
2021-09-18 14:00:00 +02:00
|
|
|
users.groups.rdnssd = {};
|
2011-03-24 17:23:28 +01:00
|
|
|
|
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2011-03-24 17:23:28 +01:00
|
|
|
}
|