mirror of
https://github.com/frappe/bench.git
synced 2025-01-08 00:04:38 +00:00
Merge pull request #1564 from cogk/fix-use-import_tasks-instead-of-include
fix(ansible): Use include_tasks instead of include
This commit is contained in:
commit
21b990e9ad
@ -24,7 +24,7 @@
|
|||||||
state: present
|
state: present
|
||||||
|
|
||||||
- name: configure mariadb
|
- name: configure mariadb
|
||||||
include: roles/mariadb/tasks/main.yml
|
include_tasks: roles/mariadb/tasks/main.yml
|
||||||
vars:
|
vars:
|
||||||
mysql_conf_tpl: roles/mariadb/files/mariadb_config.cnf
|
mysql_conf_tpl: roles/mariadb/files/mariadb_config.cnf
|
||||||
|
|
||||||
@ -32,10 +32,10 @@
|
|||||||
pip: name=mysql-python version=1.2.5
|
pip: name=mysql-python version=1.2.5
|
||||||
|
|
||||||
# setup frappe-bench
|
# setup frappe-bench
|
||||||
- include: includes/setup_bench.yml
|
- include_tasks: includes/setup_bench.yml
|
||||||
|
|
||||||
# setup development environment
|
# setup development environment
|
||||||
- include: includes/setup_dev_env.yml
|
- include_tasks: includes/setup_dev_env.yml
|
||||||
when: not production
|
when: not production
|
||||||
|
|
||||||
...
|
...
|
Loading…
Reference in New Issue
Block a user