ansible-infra/roles/auth_dns/templates/netplan-disable-ra.yaml
lilly f9c1db8446
Some checks failed
/ Ansible Lint (push) Failing after 2m32s
/ Ansible Lint (pull_request) Failing after 2m32s
fix role name auth-dns -> auth_dns
2026-05-02 01:40:10 +02:00

14 lines
328 B
YAML

# {{ 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 %}