fix: specify ansible.builtin.template for service file and configuration deployments

This commit is contained in:
2026-07-30 23:48:29 +02:00
parent 9c6094cef8
commit 965ad5cde2
4 changed files with 7 additions and 7 deletions
+4 -4
View File
@@ -52,7 +52,7 @@
# ===
- name: Deploy interfaces_ipv4.conf from template
template:
ansible.builtin.template:
src: etc/ipt-firewall/interfaces_ipv4.conf.j2
dest: /etc/ipt-firewall/interfaces_ipv4.conf
owner: root
@@ -63,7 +63,7 @@
- Restart IPv4 Firewall
- name: Deploy interfaces_ipv6.conf from template
template:
ansible.builtin.template:
src: etc/ipt-firewall/interfaces_ipv6.conf.j2
dest: /etc/ipt-firewall/interfaces_ipv6.conf
owner: root
@@ -74,7 +74,7 @@
- Restart IPv6 Firewall
- name: Deploy main_ipv4.conf from template
template:
ansible.builtin.template:
src: etc/ipt-firewall/main_ipv4.conf.j2
dest: /etc/ipt-firewall/main_ipv4.conf
owner: root
@@ -85,7 +85,7 @@
- Restart IPv4 Firewall
- name: Deploy main_ipv6.conf from template
template:
ansible.builtin.template:
src: etc/ipt-firewall/main_ipv6.conf.j2
dest: /etc/ipt-firewall/main_ipv6.conf
owner: root