mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 10:19:09 +00: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 }}" |