Updated Ansible tasks to FQCN format

This commit is contained in:
2023-05-03 23:42:55 -04:00
parent 81d2ea447a
commit dfd93dd5f8
35 changed files with 202 additions and 202 deletions

View File

@@ -1,5 +1,5 @@
- name: Install network interfaces file
copy:
ansible.builtin.copy:
src: network-interfaces.cfg
dest: /etc/network/interfaces
owner: root
@@ -7,7 +7,7 @@
mode: '0644'
- name: Install network interfaces
template:
ansible.builtin.template:
src: "interface.j2"
dest: "/etc/network/interfaces.d/{{ item.name }}"
loop: "{{ interfaces }}"