mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 18:29:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			257 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			257 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| - name: update pacman
 | |
|   community.general.pacman:
 | |
|     update_cache: yes
 | |
|     upgrade: yes
 | |
|   when: run_once_update_pacman is not defined
 | |
| 
 | |
| - name: run update pacman once
 | |
|   set_fact:
 | |
|     run_once_update_pacman: true
 | |
|   when: run_once_update_pacman is not defined |