mirror of
https://github.com/frappe/bench.git
synced 2025-01-22 22:58:31 +00:00
fix: add jammy package for Ubuntu 22 (#1549)
This commit is contained in:
parent
d728b80883
commit
5a0922d991
@ -20,6 +20,19 @@
|
||||
force: yes
|
||||
when: ansible_os_family == 'Debian'
|
||||
|
||||
- name: download wkthmltox Ubuntu 22
|
||||
get_url:
|
||||
url: https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6.1-3/wkhtmltox_0.12.6.1-3.jammy_amd64.deb
|
||||
dest: /tmp/wkhtmltox.deb
|
||||
when: ansible_distribution == 'Ubuntu' and ansible_distribution_major_version == '22' and ansible_architecture != 'aarch64'
|
||||
|
||||
- name: download wkthmltox Ubuntu 22 arm64
|
||||
get_url:
|
||||
# wkhtmltox supports arm64 starting from 0.12.6
|
||||
url: https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6.1-3/wkhtmltox_0.12.6.1-3.jammy_arm64.deb
|
||||
dest: /tmp/wkhtmltox.deb
|
||||
when: ansible_distribution == 'Ubuntu' and ansible_distribution_major_version == '22' and ansible_architecture == 'aarch64'
|
||||
|
||||
- name: download wkthmltox Ubuntu 20
|
||||
get_url:
|
||||
url: https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.5/wkhtmltox_0.12.5-1.focal_amd64.deb
|
||||
|
Loading…
x
Reference in New Issue
Block a user