mirror of
https://github.com/trailofbits/algo.git
synced 2025-09-06 20:13:11 +02:00
Merge 3781383888
into aea9c9a5e2
This commit is contained in:
commit
5957b38cfe
2 changed files with 2 additions and 2 deletions
|
@ -88,7 +88,7 @@ no-resolv
|
||||||
# You can control how dnsmasq talks to a server: this forces
|
# You can control how dnsmasq talks to a server: this forces
|
||||||
# queries to 10.1.2.3 to be routed via eth1
|
# queries to 10.1.2.3 to be routed via eth1
|
||||||
# server=10.1.2.3@eth1
|
# server=10.1.2.3@eth1
|
||||||
{% for host in dns_servers.ipv4 %}
|
{% for host in ansible_dns['nameservers']|default(dns_servers['ipv4']) %}
|
||||||
server={{ host }}
|
server={{ host }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,7 @@ conn %default
|
||||||
{% if local_dns is defined and local_dns == "Y" %}
|
{% if local_dns is defined and local_dns == "Y" %}
|
||||||
rightdns={{ local_service_ip }}
|
rightdns={{ local_service_ip }}
|
||||||
{% else %}
|
{% else %}
|
||||||
rightdns={% for host in dns_servers.ipv4 %}{{ host }}{% if not loop.last %},{% endif %}{% endfor %}{% if ipv6_support is defined and ipv6_support == "yes" %},{% for host in dns_servers.ipv6 %}{{ host }}{% if not loop.last %},{% endif %}{% endfor %}{% endif %}
|
rightdns={% for host in ansible_dns['nameservers']|default(dns_servers['ipv4']) %}{{ host }}{% if not loop.last %},{% endif %}{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
conn ikev2-pubkey
|
conn ikev2-pubkey
|
||||||
|
|
Loading…
Add table
Reference in a new issue