2
0
mirror of https://github.com/frappe/bench.git synced 2024-09-28 23:09:03 +00:00

For ubuntu >=18.04 use libssl1.1 to support upgrade of OS

For ubuntu >=18.04 use libssl1.1 to support upgrade of OS since libssl1.0-dev is not supported by Ubuntu20.04 LTS.
This commit is contained in:
Nikunj Patel 2020-06-09 12:25:26 +02:00 committed by GitHub
parent e26a0a9b37
commit fdcf01d45c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,9 +33,9 @@
- name: install pdf prerequisites for Ubuntu >= 18.04
apt:
pkg:
- libssl1.0-dev
- libssl1.1
state: present
force: yes
when: ansible_distribution_version is version_compare('18.04', 'ge')
...
...