Install chromium only on Ubuntu 22.04

This commit is contained in:
Przemek Grondek 2023-07-03 23:57:07 +02:00
parent 2eeb9a6e76
commit 259ff6ba24
2 changed files with 46 additions and 44 deletions

View File

@ -0,0 +1,44 @@
---
- become: yes
block:
- name: Gather the package facts
ansible.builtin.package_facts:
manager: auto
- name: add mint gpg key
command: apt-key adv --recv-keys --keyserver keyserver.ubuntu.com A1715D88E1DF1F24 40976EAF437D05B5 3B4FE6ACC0B21F32 A6616109451BBBF2
- name: remove snap
community.general.snap:
name: chromium
state: absent
when:
- "'chromium-browser' in ansible_facts.packages"
- ansible_facts.packages['chromium-browser'][0].version == "1:85.0.4183.83-0ubuntu2.22.04.1"
- name: remove apt snap wrapper version
apt:
state: absent
pkg:
- chromium
- chromium-browser
when:
- "'chromium-browser' in ansible_facts.packages"
- ansible_facts.packages['chromium-browser'][0].version == "1:85.0.4183.83-0ubuntu2.22.04.1"
- name: add linux mint repo
apt_repository:
repo: deb http://packages.linuxmint.com vera upstream
state: present
filename: linux-mint
- name: pin linux mint version of chromium
copy:
src: etc/apt/preferences.d/mint-chromium
dest: /etc/apt/preferences.d/mint-chromium
- name: install chromium
apt:
update_cache: yes
pkg:
- chromium

View File

@ -1,44 +1,2 @@
---
- become: yes
block:
- name: Gather the package facts
ansible.builtin.package_facts:
manager: auto
- name: add mint gpg key
command: apt-key adv --recv-keys --keyserver keyserver.ubuntu.com A1715D88E1DF1F24 40976EAF437D05B5 3B4FE6ACC0B21F32 A6616109451BBBF2
- name: remove snap
community.general.snap:
name: chromium
state: absent
when:
- "'chromium-browser' in ansible_facts.packages"
- ansible_facts.packages['chromium-browser'][0].version == "1:85.0.4183.83-0ubuntu2.22.04.1"
- name: remove apt snap wrapper version
apt:
state: absent
pkg:
- chromium
- chromium-browser
when:
- "'chromium-browser' in ansible_facts.packages"
- ansible_facts.packages['chromium-browser'][0].version == "1:85.0.4183.83-0ubuntu2.22.04.1"
- name: add linux mint repo
apt_repository:
repo: deb http://packages.linuxmint.com vera upstream
state: present
filename: linux-mint
- name: pin linux mint version of chromium
copy:
src: etc/apt/preferences.d/mint-chromium
dest: /etc/apt/preferences.d/mint-chromium
- name: install chromium
apt:
update_cache: yes
pkg:
- chromium
- import_tasks: install.yml
when: ansible_distribution == "Ubuntu" and ansible_distribution_version == "22.04"