mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-15 16:40:45 +02:00
10 lines
217 B
YAML
10 lines
217 B
YAML
- name: Delete NGINX config paths
|
|
file:
|
|
path: "{{ item }}"
|
|
state: absent
|
|
loop:
|
|
- "{{ NGINX.DIRECTORIES.CONFIGURATION }}"
|
|
- "{{ NGINX.FILES.CONFIGURATION }}"
|
|
loop_control:
|
|
label: "{{ item }}"
|