mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-11-04 04:08:15 +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 }}" |