From 88477183361680add9e9d12f19c0e5fa2f4c8df1 Mon Sep 17 00:00:00 2001 From: Ullli Date: Wed, 24 May 2023 18:11:10 +0200 Subject: [PATCH] =?utf8?q?Firefox-ESR=20f=C3=BCr=20Ubuntu=20installieren?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- library/software-firefox_esr.yml | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) 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 ... -- 2.39.5