From ed947dee595c463993fda40fb072cef533b647c8 Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Sun, 4 May 2025 00:07:45 +1000 Subject: [PATCH] fix: listen-addr -> listen-address (#275) - listen-address is the correct option Reviewed-on: https://git.query.consul/unkinben/puppet-prod/pulls/275 --- site/profiles/templates/consul/dnsmasq.conf.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/profiles/templates/consul/dnsmasq.conf.erb b/site/profiles/templates/consul/dnsmasq.conf.erb index 57ecef6..1e0a328 100644 --- a/site/profiles/templates/consul/dnsmasq.conf.erb +++ b/site/profiles/templates/consul/dnsmasq.conf.erb @@ -1,6 +1,6 @@ server=/<%= @domain %>/<%= @bind_addr %>#<%= @dns_port %> <% if @anycast_ip -%> -listen-addr=<%= @anycast_ip %> +listen-address=<%= @anycast_ip %> <% else -%> -listen-addr=<%= @bind_addr %> +listen-address=<%= @bind_addr %> <% end -%>