firefox/firefox.yml
2022-07-12 16:09:57 +02:00

17 lines
339 B
YAML

- name: Firefox setup
hosts: all
tasks:
- name: Install Firefox
apt:
name:
- firefox
- name: Firefox policy
ansible.builtin.copy:
src: policies.json
dest: /usr/lib/firefox/distribution/policies.json
owner: root
group: root
mode: '0444'
backup: yes