26 lines
		
	
	
		
			648 B
		
	
	
	
		
			YAML
		
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			648 B
		
	
	
	
		
			YAML
		
	
	
	
| ---
 | |
| - name: Cleanup Nomad configuration backup files
 | |
|   hosts: nomad_nodes
 | |
|   become: yes
 | |
|   tasks:
 | |
|     - name: Remove backup files from /etc/nomad.d/
 | |
|       file:
 | |
|         path: "{{ item }}"
 | |
|         state: absent
 | |
|       loop:
 | |
|         - "/etc/nomad.d/*.bak"
 | |
|         - "/etc/nomad.d/*.backup"
 | |
|         - "/etc/nomad.d/*.~"
 | |
|         - "/etc/nomad.d/*.broken"
 | |
|         - "/etc/nomad.d/nomad.hcl.*"
 | |
|       ignore_errors: yes
 | |
| 
 | |
|     - name: List remaining files in /etc/nomad.d/
 | |
|       command: ls -la /etc/nomad.d/
 | |
|       register: remaining_files
 | |
|       changed_when: false
 | |
| 
 | |
|     - name: Display remaining files
 | |
|       debug:
 | |
|         var: remaining_files.stdout_lines
 |