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 - become: yes
block: block:
- name: Gather the package facts
ansible.builtin.package_facts:
manager: auto
- name: remove snap - name: remove snap
community.general.snap: community.general.snap:
name: firefox name: firefox
state: absent 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 - name: remove apt snap wrapper version
apt: apt:
state: absent state: absent
pkg: pkg:
- firefox - 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 - name: add ppa
apt_repository: apt_repository: