mirror of
https://github.com/frappe/bench.git
synced 2025-01-10 09:02:10 +00:00
20 lines
390 B
YAML
20 lines
390 B
YAML
---
|
|
- name: Setup production
|
|
become: yes
|
|
become_user: root
|
|
command: bench setup production {{ frappe_user }}
|
|
args:
|
|
chdir: '{{ bench_path }}'
|
|
|
|
- name: Setup Sudoers
|
|
become: yes
|
|
become_user: root
|
|
command: bench setup sudoers {{ frappe_user }}
|
|
args:
|
|
chdir: '{{ bench_path }}'
|
|
|
|
- name: Restart the bench
|
|
command: bench restart
|
|
args:
|
|
chdir: '{{ bench_path }}'
|
|
... |