You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
517 B
YAML
21 lines
517 B
YAML
- set_fact:
|
|
group_identifier: "{{ item }}"
|
|
group_items: "{{ combined_rules[item] }}"
|
|
|
|
- block:
|
|
- find:
|
|
paths: "/etc/nftables/ansible-managed/{{ group_identifier }}/"
|
|
file_type: 'any'
|
|
excludes: '{% for item in group_items %}{{ item }}.nft,{% endfor %}'
|
|
register: removeFiles
|
|
|
|
- file:
|
|
path: "{{ fileItem.path }}"
|
|
state: absent
|
|
loop: "{{ removeFiles.files }}"
|
|
loop_control:
|
|
label: "{{ fileItem.path }}"
|
|
loop_var: fileItem
|
|
|
|
when: group_items is mapping
|