new syntax

This commit is contained in:
2024-07-22 15:17:21 +02:00
parent 82e1ce04da
commit 54e77e73cf
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
allow-from = 192.168.1.0/24, 192.168.3.0/24, 172.16.0.0/24, 127.0.0.0/8 allow-from = 192.168.1.0/24, 192.168.3.0/24, 172.16.0.0/24, 127.0.0.0/8
local-address += {{ ansible_default_ipv4.address }} {% if wg_local_ip is defined %}, {{ wg_local_ip | ipaddr('address') }} {% else %} local-address += {{ ansible_default_ipv4.address }} {% if wg_local_ip is defined %}, {{ wg_local_ip | ansible.utils.ipaddr('address') }} {% else %}
local-port = {{ pdns-recursor-lport | default("53") }} local-port = {{ pdns-recursor-lport | default("53") }}
query-local-address = {{ ansible_default_ipv4.address }} {% if ansible_default_ipv6.address is defined %}, {{ ansible_default_ipv6.address }} {% else %} query-local-address = {{ ansible_default_ipv4.address }} {% if ansible_default_ipv6.address is defined %}, {{ ansible_default_ipv6.address }} {% else %}

View File

@@ -1,7 +1,7 @@
server: server:
ip-freebind: yes ip-freebind: yes
{% if wg_local_ip is defined %} {% if wg_local_ip is defined %}
interface: {{ wg_local_ip | ipaddr('address') }} interface: {{ wg_local_ip | ansible.utils.ipaddr('address') }}
{% else %} {% else %}
interface: {{ ansible_default_ipv4.address }} interface: {{ ansible_default_ipv4.address }}
{% endif %} {% endif %}