2024-05-04 19:05:06 +03:00
|
|
|
---
|
2024-05-04 20:16:12 +03:00
|
|
|
- name: Create interface files
|
|
|
|
ansible.builtin.template:
|
|
|
|
src: interface.conf.j2
|
2024-05-04 19:05:06 +03:00
|
|
|
dest: "/etc/network/interfaces.d/{{ item.key }}.conf"
|
2024-05-04 20:16:12 +03:00
|
|
|
mode: "644"
|
2024-05-04 19:05:06 +03:00
|
|
|
with_items:
|
2024-05-04 20:16:12 +03:00
|
|
|
- "{{ interfaces | dict2items }}"
|
|
|
|
notify:
|
|
|
|
- Restart networking
|