2017-09-01 11:06:21 +00:00
|
|
|
---
|
|
|
|
- name: Check if ERPNext App exists
|
|
|
|
stat: path="{{ bench_path }}/apps/erpnext"
|
|
|
|
register: app
|
|
|
|
|
|
|
|
- name: get erpnext
|
|
|
|
command: bench get-app erpnext https://github.com/frappe/erpnext --branch {{ branch }}
|
|
|
|
args:
|
|
|
|
creates: "{{ bench_path }}/apps/erpnext"
|
|
|
|
chdir: "{{ bench_path }}"
|
|
|
|
when: not app.stat.exists
|
|
|
|
|
|
|
|
- name: Check whether a site called site1.local exists
|
|
|
|
stat: path="{{ bench_path }}/sites/site1.local"
|
|
|
|
register: site_folder
|
|
|
|
|
2018-01-18 22:44:15 +00:00
|
|
|
- name: Add additional conf for MariaDB 10.2 in mariadb.conf.d
|
|
|
|
blockinfile:
|
|
|
|
path: /etc/mysql/mariadb.conf.d/erpnext.cnf
|
|
|
|
block: |
|
|
|
|
[mysqld]
|
|
|
|
pid-file = /var/run/mysqld/mysqld.pid
|
|
|
|
socket = /var/run/mysqld/mysqld.sock
|
|
|
|
create: yes
|
|
|
|
become: yes
|
|
|
|
become_user: root
|
|
|
|
|
|
|
|
- name: restart mysql
|
|
|
|
service: name=mysql state=restarted
|
|
|
|
become: yes
|
|
|
|
become_user: root
|
|
|
|
|
2017-09-01 11:06:21 +00:00
|
|
|
- name: create a new default site
|
|
|
|
command: bench new-site site1.local --admin-password {{ admin_password }} --mariadb-root-password {{ mysql_root_password }}
|
|
|
|
args:
|
|
|
|
chdir: "{{ bench_path }}"
|
|
|
|
when: not site_folder.stat.exists
|
|
|
|
|
|
|
|
- name: install erpnext to default site
|
|
|
|
command: bench --site site1.local install-app erpnext
|
|
|
|
args:
|
|
|
|
chdir: "{{ bench_path }}"
|
|
|
|
|