enable auth-dns role to actually configure useful zones
This commit is contained in:
parent
c45fbaedda
commit
f61640ec39
7 changed files with 175 additions and 14 deletions
14
roles/auth-dns/templates/netplan-disable-ra.yaml
Normal file
14
roles/auth-dns/templates/netplan-disable-ra.yaml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# {{ ansible_managed }}
|
||||
network:
|
||||
ethernets:
|
||||
{%- for i_iface_name in ansible_interfaces -%}
|
||||
{%- if i_iface_name != "lo" -%}
|
||||
{%- set i_iface = ansible_facts[i_iface_name] %}
|
||||
|
||||
{{ i_iface_name }}:
|
||||
match:
|
||||
macaddress: "{{ i_iface.macaddress }}"
|
||||
accept-ra: false
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue