From d29d20ff2196fa371059bd1324a971520ed63aab Mon Sep 17 00:00:00 2001 From: Tom Herbers Date: Sun, 27 Oct 2024 18:40:11 +0100 Subject: [PATCH] unbound/exporter: migrate from controlInterface to unbound.host https://github.com/NixOS/nixpkgs/commit/73c5a5a778cebc386fbbc0e6423cc03550c32390 --- roles/gw/unbound/exporter.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/gw/unbound/exporter.nix b/roles/gw/unbound/exporter.nix index df434f7..8eaaa34 100644 --- a/roles/gw/unbound/exporter.nix +++ b/roles/gw/unbound/exporter.nix @@ -3,7 +3,7 @@ services.prometheus.exporters.unbound = { enable = true; - controlInterface = "${config.services.unbound.localControlSocketPath}"; + unbound.host = "unix://${config.services.unbound.localControlSocketPath}"; listenAddress = "[::]"; group = "${config.services.unbound.group}"; }; @@ -24,4 +24,4 @@ ''; }; -} \ No newline at end of file +}