From c57c5c42a48fd34d043c3d71f3ca4598cddeef9d Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Fri, 1 Apr 2022 22:58:25 +0200 Subject: [PATCH] prometheus-bird-exporter: update birdSocket default path a5276e1fbdb1773554fb882ad4432116b9b4d918 updated bird to use /run/bird/bird.ctl, but didn't update the default used for prometheus-bird-exporter. Reported-In: https://github.com/NixOS/nixpkgs/pull/161193#issuecomment-1086228985 --- nixos/modules/services/monitoring/prometheus/exporters/bird.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/monitoring/prometheus/exporters/bird.nix b/nixos/modules/services/monitoring/prometheus/exporters/bird.nix index 1ef264fc86e5..5fda4c980ebb 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/bird.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/bird.nix @@ -17,7 +17,7 @@ in }; birdSocket = mkOption { type = types.path; - default = "/var/run/bird.ctl"; + default = "/run/bird/bird.ctl"; description = '' Path to BIRD2 (or BIRD1 v4) socket. '';