mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-16 00:47:29 +02:00
8 lines
226 B
YAML
8 lines
226 B
YAML
- name: Cleanup all NGINX cache directories
|
|
become: true
|
|
ansible.builtin.file:
|
|
path: "{{ item.value }}"
|
|
state: absent
|
|
loop: "{{ NGINX.DIRECTORIES.CACHE | dict2items }}"
|
|
loop_control:
|
|
label: "{{ item.key }}" |