mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 10:19:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			380 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			380 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| ---
 | |
| - name: Install Firefox
 | |
|   package:
 | |
|     name: "{{ firefox_package }}"
 | |
|     state: present
 | |
| 
 | |
| - name: Ensure Firefox distribution policies directory exists
 | |
|   file:
 | |
|     path: "{{ firefox_policy_dir }}"
 | |
|     state: directory
 | |
|     mode: '0755'
 | |
| 
 | |
| - name: Deploy Firefox Enterprise Policies file
 | |
|   template:
 | |
|     src: policies.json.j2
 | |
|     dest: "{{ firefox_policy_file }}"
 | |
|     mode: '0644'
 |