Fix firefox ppa for ubuntu

This commit is contained in:
Przemek Grondek 2022-07-14 19:48:44 +02:00
parent 16489ecc0a
commit 98cb78d7af

View File

@ -1,17 +1,25 @@
- become: yes
block:
- name: Gather the package facts
ansible.builtin.package_facts:
manager: auto
- name: remove snap
community.general.snap:
name: firefox
state: absent
when: ansible_facts.packages.firefox[0].version == "1.1snap1-0ubuntu2"
when:
- "'firefox' in ansible_facts.packages"
- ansible_facts.packages['firefox'].version == "1:1snap1-0ubuntu2"
- name: remove apt snap wrapper version
apt:
state: absent
pkg:
- firefox
when: ansible_facts.packages.firefox[0].version == "1.1snap1-0ubuntu2"
when:
- "'firefox' in ansible_facts.packages"
- ansible_facts.packages['firefox'].version == "1:1snap1-0ubuntu2"
- name: add ppa
apt_repository:
@ -28,4 +36,4 @@
update_cache: yes
state: latest
pkg:
- firefox
- firefox