2
0
mirror of https://github.com/frappe/bench.git synced 2025-01-25 07:58:24 +00:00

41 lines
899 B
YAML
Raw Normal View History

2018-03-01 03:51:48 +05:30
---
- name: install pillow prerequisites for Ubuntu < 14.04
apt:
pkg:
- libjpeg8-dev
- libtiff4-dev
- tcl8.5-dev
- tk8.5-dev
state: present
force: yes
when: ansible_distribution_version is version_compare('14.04', 'lt')
2018-03-01 03:51:48 +05:30
- name: install pillow prerequisites for Ubuntu >= 14.04
apt:
pkg:
- libjpeg8-dev
- libtiff5-dev
- tcl8.6-dev
- tk8.6-dev
state: present
force: yes
when: ansible_distribution_version is version_compare('14.04', 'ge')
2018-03-01 03:51:48 +05:30
2019-10-21 15:40:19 +05:30
- name: install pdf prerequisites for Ubuntu < 18.04
apt:
pkg:
- libssl-dev
state: present
force: yes
when: ansible_distribution_version is version_compare('18.04', 'lt')
- name: install pdf prerequisites for Ubuntu >= 18.04
apt:
pkg:
- libssl1.0-dev
state: present
force: yes
when: ansible_distribution_version is version_compare('18.04', 'ge')
2018-03-01 03:51:48 +05:30
...