From 99f58a99ddcb586f702feee3616fb390ddf045af Mon Sep 17 00:00:00 2001
From: jurgenhaas <juergen@paragon-es.de>
Date: Sun, 25 Mar 2018 15:55:51 +0200
Subject: [PATCH] ansible-playbooks/general#72 Always use import_tasks or
 include_tasks instead of just include

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

diff --git a/tasks/main.yml b/tasks/main.yml
index a58732d..e1f2adb 100644
--- a/tasks/main.yml
+++ b/tasks/main.yml
@@ -7,9 +7,9 @@
 
 - block:
 
-  - include: install.yml
+  - import_tasks: install.yml
 
-  - include: configure.yml
+  - import_tasks: configure.yml
 
   - name: 'Remember that this role had been run'
     set_fact: role_fail2ban_completed=true
-- 
GitLab