From 9862d76824587990079dcdab1e344d0d6ae699e5 Mon Sep 17 00:00:00 2001 From: meaz Date: Tue, 17 Jan 2023 20:22:30 +0000 Subject: [PATCH] change include to include_tasks (#21) Co-authored-by: meaz Reviewed-on: https://git.disroot.org/Disroot-Ansible/gitea/pulls/21 Reviewed-by: muppeth --- tasks/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index 219a966..acd8dc3 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -1,13 +1,13 @@ --- - name: "[GITEA]- Create user" - include: user.yml + include_tasks: user.yml - name: "[GITEA] - configure" - include: configure.yml + include_tasks: configure.yml - name: "[GITEA] - systemd" - include: systemd.yml + include_tasks: systemd.yml - name: "[GITEA] - install" - include: install.yml + include_tasks: install.yml