feat: Merge rules and tables in one file
This commit is contained in:
parent
35d31eb752
commit
206dbdd22f
@ -33,10 +33,10 @@
|
||||
group: root
|
||||
mode: u=rw,g=,o=
|
||||
src: "{{ role_path }}/templates/rules.conf.j2"
|
||||
dest: "/srv/nftables/rules_{{ item.filename }}.conf"
|
||||
loop: "{{ nftables_rules }}"
|
||||
loop_control:
|
||||
label: "{{ item.filename }}"
|
||||
dest: "/srv/nftables/rules.conf"
|
||||
# loop: "{{ nftables_rules }}"
|
||||
# loop_control:
|
||||
# label: "{{ item.filename }}"
|
||||
become: true
|
||||
notify: Redémarrer nftables.service
|
||||
|
||||
|
@ -1,5 +1,7 @@
|
||||
# {{ ansible_managed }}
|
||||
|
||||
{% for rule in item.rules %}
|
||||
{{ rule }}
|
||||
{% endfor %}
|
||||
{% for item in nftables_rules %}
|
||||
# BEGIN {{ item.name }}
|
||||
{{ item.rules | join('\n') }}
|
||||
# END {{ item.name }}
|
||||
{%+ endfor %}
|
||||
|
Loading…
Reference in New Issue
Block a user