mirror of
https://github.com/frappe/bench.git
synced 2025-02-13 08:18:27 +00:00
[fix] [playbook] ubuntu 15.04 dev setup ready
This commit is contained in:
parent
6b6de9d2d0
commit
4f1c5492c3
@ -10,7 +10,12 @@
|
||||
become_user: root
|
||||
|
||||
- name: apt-get install
|
||||
apt: pkg=mariadb-server update_cache=yes state=present
|
||||
apt: pkg={{ item }} update_cache=yes state=present
|
||||
with_items:
|
||||
- mariadb-server
|
||||
- mariadb-client
|
||||
- mariadb-common
|
||||
- libmariadbclient-dev
|
||||
become: yes
|
||||
become_user: root
|
||||
|
||||
|
@ -5,8 +5,24 @@
|
||||
dest="/tmp/"
|
||||
become: yes
|
||||
become_user: root
|
||||
when: ansible_distribution_release in ("jessie", "precise", "trusty", "wheezy")
|
||||
|
||||
- name: Install wkhtmltopdf deb
|
||||
apt: deb=/tmp/wkhtmltox-{{ wkhtmltopdf_version }}_linux-{{ ansible_distribution_release }}-{{ "amd64" if ansible_architecture == "x86_64" else "i386"}}.deb
|
||||
become: yes
|
||||
become_user: root
|
||||
when: ansible_distribution_release in ("jessie", "precise", "trusty", "wheezy")
|
||||
|
||||
- name: Download wkhtmltopdf for Ubuntu Wily
|
||||
get_url:
|
||||
url=http://download.gna.org/wkhtmltopdf/0.12/{{ wkhtmltopdf_version }}/wkhtmltox-{{ wkhtmltopdf_version }}_linux-trusty-{{ "amd64" if ansible_architecture == "x86_64" else "i386"}}.deb
|
||||
dest="/tmp/"
|
||||
become: yes
|
||||
become_user: root
|
||||
when: ansible_distribution_release=="wily"
|
||||
|
||||
- name: Install wkhtmltopdf deb for Ubuntu Wily
|
||||
apt: deb=/tmp/wkhtmltox-{{ wkhtmltopdf_version }}_linux-trusty-{{ "amd64" if ansible_architecture == "x86_64" else "i386"}}.deb
|
||||
become: yes
|
||||
become_user: root
|
||||
when: ansible_distribution_release=="wily"
|
||||
|
Loading…
x
Reference in New Issue
Block a user