X-Git-Url: https://freie-schul-it.de/gitweb/fsit-cmgt.git/blobdiff_plain/ee1a3b3e5a72f2e6657386337ae4c985fee4ab90..HEAD:/library/software-firefox_esr.yml?ds=inline diff --git a/library/software-firefox_esr.yml b/library/software-firefox_esr.yml index a042eb0..5ef30d5 100644 --- a/library/software-firefox_esr.yml +++ b/library/software-firefox_esr.yml @@ -1,6 +1,4 @@ --- - - - name: create firefox-policies directory file: path: /etc/firefox/policies @@ -9,4 +7,26 @@ copy: src: templates/firefox_policies.json.j2 dest: /etc/firefox/policies/policies.json + +# Ubuntu: Firefox entfernen und Firefox-ESR installieren! +# Was ist mit snap bei 22.04??? +- name: Firefox-ESR - add repository from PPA and install its signing key on Ubuntu + apt_repository: + repo: ppa:mozillateam/ppa + when: ansible_facts['distribution'] == 'Ubuntu' +- name: remove unwanted packages for Ubuntu + apt: + state: absent + pkg: + - firefox + - firefox-locale-de + - firefox-locale-en + - firefox-locale-es + when: ansible_facts['distribution'] == 'Ubuntu' +- name: install firefox-esr for ubuntu-systems + apt: + pkg: + - firefox-esr + - firefox-esr-locale-de + - firefox-esr-locale-es ...