mirror of
https://github.com/frappe/bench.git
synced 2024-11-14 09:14:04 +00:00
9 lines
481 B
YAML
9 lines
481 B
YAML
---
|
|
- name: Download wkhtmltopdf
|
|
get_url:
|
|
url=http://download.gna.org/wkhtmltopdf/0.12/{{ wkhtmltopdf_version }}/wkhtmltox-{{ wkhtmltopdf_version }}_linux-{{ ansible_distribution_release }}-{{ "amd64" if ansible_architecture == "x86_64" else "i386"}}.deb
|
|
dest="/tmp/"
|
|
|
|
- name: Install wkhtmltopdf deb
|
|
apt: deb=/tmp/wkhtmltox-{{ wkhtmltopdf_version }}_linux-{{ ansible_distribution_release }}-{{ "amd64" if ansible_architecture == "x86_64" else "i386"}}.deb
|