2
0
mirror of https://github.com/frappe/bench.git synced 2024-09-23 12:39:01 +00:00
bench/playbooks/develop/ubuntu.yml

101 lines
2.3 KiB
YAML
Raw Normal View History

2016-03-16 09:11:55 +00:00
---
- hosts: localhost
vars:
2016-05-25 10:47:48 +00:00
bench_repo_path: "/home/{{ ansible_user_id }}/.bench"
bench_path: "/home/{{ ansible_user_id }}/frappe-bench"
2016-03-16 09:11:55 +00:00
mysql_config_template: "templates/simple_mariadb_config.cnf"
2016-03-17 07:29:44 +00:00
mysql_conf_dir: /etc/mysql/conf.d/
wkhtmltopdf_version: 0.12.2.1
2016-03-16 09:11:55 +00:00
tasks:
# install pre-requisites
- name: install prequisites
apt: pkg={{ item }} state=present
with_items:
2016-03-17 07:29:44 +00:00
# basic installs
- build-essential
- redis-server
# for mariadb
- software-properties-common
# for wkhtmltopdf
- libxrender1
- libxext6
- xfonts-75dpi
- xfonts-base
# for Pillow
- libjpeg8-dev
- zlib1g-dev
- libfreetype6-dev
- liblcms2-dev
- libwebp-dev
- python-tk
become: yes
become_user: root
- name: install pillow prerequisites for Ubuntu < 14.04
apt: pkg={{ item }} state=present
with_items:
- libtiff4-dev
- tcl8.5-dev
- tk8.5-dev
when: ansible_distribution_version | version_compare('14.04', 'lt')
2016-03-17 07:29:44 +00:00
become: yes
become_user: root
- name: install pillow prerequisites for Ubuntu >= 14.04
apt: pkg={{ item }} state=present
with_items:
- libtiff5-dev
- tcl8.6-dev
- tk8.6-dev
when: ansible_distribution_version >= 14.04
2016-03-17 07:29:44 +00:00
become: yes
become_user: root
2016-08-03 07:22:08 +00:00
- name: Get nodejs 6.x bash script
get_url:
2016-08-03 07:22:08 +00:00
url: 'https://deb.nodesource.com/setup_6.x'
dest: '/tmp/setup_6.x'
mode: 0644
become: yes
become_user: root
2016-08-03 07:22:08 +00:00
- name: Run nodejs bash script
command: /bin/bash /tmp/setup_6.x
become: yes
become_user: root
2016-08-03 07:22:08 +00:00
- name: Install nodejs 6.x
apt:
name: nodejs
state: present
update_cache: yes
force: yes
become: yes
become_user: root
# install MariaDB
- include: includes/mariadb_ubuntu.yml
# install WKHTMLtoPDF
2016-03-17 07:29:44 +00:00
- include: includes/wkhtmltopdf_ubuntu_debian.yml
2016-03-16 09:11:55 +00:00
# setup MariaDB
- include: includes/setup_mariadb.yml
2016-06-28 06:41:06 +00:00
- debug:
var: run_travis
2016-03-16 09:11:55 +00:00
# setup frappe-bench
- include: includes/setup_bench.yml
2016-08-01 05:44:01 +00:00
when: not without_bench_setup and not run_travis
# setup development environment
- include: includes/setup_dev_env.yml
when: not production and not run_travis and not without_bench_setup