From b573b3e2ea0153178c40cc05ea8fd2cc1e4f647a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Autin?= Date: Thu, 25 Jan 2024 12:24:17 +0100 Subject: [PATCH] fix: replaced deprecated ansible.builtin.include --- lamp_ubuntu2204_2hosts_withroles/roles/web/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lamp_ubuntu2204_2hosts_withroles/roles/web/tasks/main.yml b/lamp_ubuntu2204_2hosts_withroles/roles/web/tasks/main.yml index 796842e..2850a23 100644 --- a/lamp_ubuntu2204_2hosts_withroles/roles/web/tasks/main.yml +++ b/lamp_ubuntu2204_2hosts_withroles/roles/web/tasks/main.yml @@ -1,3 +1,3 @@ --- -- include: install_httpd.yml -- include: copy_code.yml +- include_tasks: install_httpd.yml +- include_tasks: copy_code.yml