File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
bench/playbooks/roles/wkhtmltopdf/tasks Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 24
24
get_url :
25
25
url : https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.5/wkhtmltox_0.12.5-1.focal_amd64.deb
26
26
dest : /tmp/wkhtmltox.deb
27
- when : ansible_distribution == 'Ubuntu' and ansible_distribution_major_version == '20'
27
+ when : ansible_distribution == 'Ubuntu' and ansible_distribution_major_version == '20' and ansible_architecture != 'aarch64'
28
+
29
+ - name : download wkthmltox Ubuntu 20 arm64
30
+ get_url :
31
+ # wkhtmltox supports arm64 starting from 0.12.6
32
+ url : https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6-1/wkhtmltox_0.12.6-1.focal_arm64.deb
33
+ dest : /tmp/wkhtmltox.deb
34
+ when : ansible_distribution == 'Ubuntu' and ansible_distribution_major_version == '20' and ansible_architecture == 'aarch64'
28
35
29
36
- name : download wkthmltox Ubuntu 18
30
37
get_url :
You can’t perform that action at this time.
0 commit comments