From fc42b1fdd2afa3989dbcca96ec4a802c28a8ca8c Mon Sep 17 00:00:00 2001 From: Ludovic Cartier Date: Fri, 25 Jul 2025 09:35:58 +0200 Subject: [PATCH] replace include by include_tasks --- tasks/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index 44addd4..fa55974 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -1,12 +1,12 @@ --- - name: "nginx | installation" - include: install.yml + include_tasks: install.yml - name: "nginx | custom configuration" - include: configure.yml + include_tasks: configure.yml - name: "nginx | status page" - include: status.yml + include_tasks: status.yml - name: "nginx | configure vhost" - include: vhost.yml + include_tasks: vhost.yml