From cbd703d436ee6b4917db865f1e526e7ae50b3fd3 Mon Sep 17 00:00:00 2001 From: Corentin Forler Date: Fri, 31 May 2024 13:45:12 +0200 Subject: [PATCH] fix(ansible): Use include_tasks instead of include --- bench/playbooks/macosx.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bench/playbooks/macosx.yml b/bench/playbooks/macosx.yml index 12be8f04e..ae0ce2f59 100644 --- a/bench/playbooks/macosx.yml +++ b/bench/playbooks/macosx.yml @@ -24,7 +24,7 @@ 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 @@ -32,10 +32,10 @@ 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 ... \ No newline at end of file