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

Merge pull request #1018 from nikunj1222/patch-2

fix(playbooks): Use libssl1.1 for ubuntu >=18.04
This commit is contained in:
gavin 2020-06-23 14:19:39 +05:30 committed by GitHub
commit d491f6938d
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')
...
...