Fix firefox ppa for ubuntu
This commit is contained in:
parent
16489ecc0a
commit
98cb78d7af
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user