]> freie-schul-it.de Git - fsit-cmgt.git/blob - library/software-firefox_esr.yml
Firefox-ESR für Ubuntu installieren
[fsit-cmgt.git] / library / software-firefox_esr.yml
1 ---
2 - name: create firefox-policies directory
3 file:
4 path: /etc/firefox/policies
5 state: directory
6 - name: copy firefox-policies config file
7 copy:
8 src: templates/firefox_policies.json.j2
9 dest: /etc/firefox/policies/policies.json
10
11 # Ubuntu: Firefox entfernen und Firefox-ESR installieren!
12 # Was ist mit snap bei 22.04???
13 - name: Firefox-ESR - add repository from PPA and install its signing key on Ubuntu
14 apt_repository:
15 repo: ppa:mozillateam/ppa
16 when: ansible_facts['distribution'] == 'Ubuntu'
17 - name: remove unwanted packages for Ubuntu
18 apt:
19 state: absent
20 pkg:
21 - firefox
22 - firefox-locale-de
23 - firefox-locale-en
24 - firefox-locale-es
25 when: ansible_facts['distribution'] == 'Ubuntu'
26 - name: install firefox-esr for ubuntu-systems
27 apt:
28 pkg:
29 - firefox-esr
30 - firefox-esr-locale-de
31 - firefox-esr-locale-es
32 ...