mirror of
https://github.com/iiab/iiab.git
synced 2025-02-14 20:22:08 +00:00
Clarify PR #3397: Force libssl1.1 on Mint 21 too
This commit is contained in:
parent
e46e34679e
commit
b11a608adb
1 changed files with 3 additions and 3 deletions
|
@ -111,19 +111,19 @@
|
|||
# sudo apt-get install libssl1.1
|
||||
# rm /etc/apt/sources.list.d/focal-security.list
|
||||
|
||||
- name: Install source/repo "deb http://security.ubuntu.com/ubuntu focal-security main" at /etc/apt/sources.list.d/security_ubuntu_com_ubuntu.list if Ubuntu 22.04+
|
||||
- name: Install source/repo "deb http://security.ubuntu.com/ubuntu focal-security main" at /etc/apt/sources.list.d/security_ubuntu_com_ubuntu.list if Ubuntu 22.04+ or Mint 21
|
||||
apt_repository:
|
||||
repo: deb http://security.ubuntu.com/ubuntu focal-security main
|
||||
#filename: focal-security # If filename focal-security.list is preferred
|
||||
when: is_ubuntu and os_ver is version('ubuntu-2204', '>=') or is_linuxmint_21
|
||||
|
||||
- name: Install libssl1.1 if Ubuntu 22.04+ (required by MongoDB below)
|
||||
- name: Install libssl1.1 if Ubuntu 22.04+ or Mint 21 (required by MongoDB below)
|
||||
package:
|
||||
name: libssl1.1
|
||||
state: present
|
||||
when: is_ubuntu and os_ver is version('ubuntu-2204', '>=') or is_linuxmint_21
|
||||
|
||||
- name: Remove source/repo "deb http://security.ubuntu.com/ubuntu focal-security main" at /etc/apt/sources.list.d/security_ubuntu_com_ubuntu.list if Ubuntu 22.04+
|
||||
- name: Remove source/repo "deb http://security.ubuntu.com/ubuntu focal-security main" at /etc/apt/sources.list.d/security_ubuntu_com_ubuntu.list if Ubuntu 22.04+ or Mint 21
|
||||
apt_repository:
|
||||
repo: deb http://security.ubuntu.com/ubuntu focal-security main
|
||||
state: absent
|
||||
|
|
Loading…
Reference in a new issue