feat: Merge rules and tables in one file

This commit is contained in:
pulsar89.5 2023-12-28 17:39:20 +01:00
parent 35d31eb752
commit 80d67f3380
2 changed files with 8 additions and 6 deletions

View File

@ -33,10 +33,10 @@
group: root group: root
mode: u=rw,g=,o= mode: u=rw,g=,o=
src: "{{ role_path }}/templates/rules.conf.j2" src: "{{ role_path }}/templates/rules.conf.j2"
dest: "/srv/nftables/rules_{{ item.filename }}.conf" dest: "/srv/nftables/rules.conf"
loop: "{{ nftables_rules }}" # loop: "{{ nftables_rules }}"
loop_control: # loop_control:
label: "{{ item.filename }}" # label: "{{ item.filename }}"
become: true become: true
notify: Redémarrer nftables.service notify: Redémarrer nftables.service

View File

@ -1,5 +1,7 @@
# {{ ansible_managed }} # {{ ansible_managed }}
{% for rule in item.rules %} {% for item in nftables_rules %}
{{ rule }} # {{ item.comment }}
{{ item.rules | join('\n') }}
{% endfor %} {% endfor %}