From b4158bb9b63da5d56fae60b71bf957f83ac5ae71 Mon Sep 17 00:00:00 2001
From: Arthur BOUDREAULT <boudreaultarthur@ik.me>
Date: Tue, 12 Oct 2021 15:33:02 +0200
Subject: [PATCH] =?UTF-8?q?=E2=99=BBrefactor:=20using=20latest=20ansible?=
 =?UTF-8?q?=20module=20to=20be=20more=20future-proof=20and=20support=20lat?=
 =?UTF-8?q?est=20ansible=20versions?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 tasks/main.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tasks/main.yml b/tasks/main.yml
index 3d9e9ba..512acc7 100644
--- a/tasks/main.yml
+++ b/tasks/main.yml
@@ -30,7 +30,7 @@
   when: ynh_file_install.stat.exists == False
 
 - name: Create extra domains
-  ansible.builtin.include: domains.yml
+  ansible.builtin.include_tasks: domains.yml
   when: ynh_extra_domains
 
 - name: Run first Yunohost diagnosis
@@ -41,9 +41,9 @@
   changed_when: False
 
 - name: Add Yunohost users
-  ansible.builtin.include: users.yml
+  ansible.builtin.include_tasks: users.yml
   when: ynh_users
 
 - name: Install Yunohost apps
-  ansible.builtin.include: apps.yml
+  ansible.builtin.include_tasks: apps.yml
   when: ynh_apps
-- 
GitLab