Skip to content

Commit

Permalink
Merge pull request #1564 from cogk/fix-use-import_tasks-instead-of-in…
Browse files Browse the repository at this point in the history
…clude

fix(ansible): Use include_tasks instead of include
  • Loading branch information
akhilnarang authored Aug 12, 2024
2 parents 181d265 + cbd703d commit 21b990e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bench/playbooks/macosx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,18 @@
state: present

- name: configure mariadb
include: roles/mariadb/tasks/main.yml
include_tasks: roles/mariadb/tasks/main.yml
vars:
mysql_conf_tpl: roles/mariadb/files/mariadb_config.cnf

- name: Install MySQLdb in global env
pip: name=mysql-python version=1.2.5

# setup frappe-bench
- include: includes/setup_bench.yml
- include_tasks: includes/setup_bench.yml

# setup development environment
- include: includes/setup_dev_env.yml
- include_tasks: includes/setup_dev_env.yml
when: not production

...

0 comments on commit 21b990e

Please sign in to comment.