2
0
mirror of https://github.com/frappe/bench.git synced 2024-09-23 04:29:02 +00:00

remove distribution specific files

This commit is contained in:
Saurabh 2017-08-29 19:18:05 +05:30
parent 22a826bbde
commit f13dcbd958
3 changed files with 0 additions and 73 deletions

View File

@ -1,29 +0,0 @@
---
- include: setup_essentials.yml
- name: "Setup prerequisites, mariadb, wkhtmltopdf, nodejs and psutil"
hosts: localhost
become: yes
become_user: root
vars:
mysql_conf_tpl: ../files/mariadb_config.cnf
mysql_secure_installation: True
roles:
- mariadb
- wkhtmltopdf
- nodejs
- psutil
- name: setup bench and dev environment
hosts: localhost
vars:
bench_repo_path: "/home/{{ ansible_user_id }}/.bench"
bench_path: "/home/{{ ansible_user_id }}/{{ bench_name }}"
tasks:
# setup frappe-bench
- include: includes/setup_bench.yml
when: not run_travis and not without_bench_setup
# setup development environment
- include: includes/setup_dev_env.yml
when: not run_travis and not production

View File

@ -34,12 +34,3 @@
# setup development environment
- include: includes/setup_dev_env.yml
when: not run_travis and not production
# - include: ubuntu.yml
# when: ansible_distribution == 'Ubuntu'
#
# - include: centos.yml
# when: ansible_distribution == 'CentOS'
#
# - include: debian.yml
# when: ansible_distribution == 'Debian'

View File

@ -1,35 +0,0 @@
---
- include: setup_essentials.yml
- name: "Setup prerequisites, mariadb, wkhtmltopdf, nodejs and psutil"
hosts: localhost
become: yes
become_user: root
vars:
bench_repo_path: "/home/{{ ansible_user_id }}/.bench"
bench_path: "/home/{{ ansible_user_id }}/frappe-bench"
mysql_conf_tpl: ../files/mariadb_config.cnf
mysql_secure_installation: True
roles:
- prerequisites
- mariadb
- wkhtmltopdf
- nodejs
- psutil
- name: setup bench and dev environment
hosts: localhost
vars:
bench_repo_path: "/home/{{ ansible_user_id }}/.bench"
bench_path: "/home/{{ ansible_user_id }}/frappe-bench"
tasks:
- debug:
var: run_travis
# setup frappe-bench
- include: includes/setup_bench.yml
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