Solved bugs, restructured and added new functionality for clients/personal computers

This commit is contained in:
2025-04-02 12:27:54 +02:00
parent 500f8b508d
commit 30b138ffa3
33 changed files with 289 additions and 119 deletions

View File

@@ -0,0 +1,17 @@
---
- 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'