15 lines
		
	
	
	
		
			401 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			401 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| - fail:
 | |
|     msg: "only supported on debian"
 | |
|   when: not ansible_distribution in ["Debian"]
 | |
| 
 | |
| 
 | |
| - include_tasks: remove-obsolete-apt-lists.yml
 | |
| - include_tasks: debian-12-or-earlier.yml
 | |
|   when: ansible_distribution_major_version|int <= 12
 | |
| - include_tasks: debian-13-or-later.yml
 | |
|   when: ansible_distribution_major_version|int >= 13
 | |
| 
 | |
| 
 | |
| - name: update apt cache
 | |
|   apt: update_cache=yes
 | |
|   changed_when: false
 |