From 2b3ee50ae1f85e30d6f9686e3d22cf314bce15a9 Mon Sep 17 00:00:00 2001
From: jurgenhaas <juergen@paragon-es.de>
Date: Wed, 8 Nov 2017 11:11:16 +0100
Subject: [PATCH] ansible-playbooks/general#72 Replace all include with
 include_tasks

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

diff --git a/tasks/main.yml b/tasks/main.yml
index 627ff73..576e4d1 100644
--- a/tasks/main.yml
+++ b/tasks/main.yml
@@ -8,7 +8,7 @@
 - block:
 
   - name: "Reset all hosts"
-    include: reset.yml
+    include_tasks: reset.yml
     with_items: '{{ groups.all }}'
     loop_control:
       loop_var: hostname
@@ -20,7 +20,7 @@
     tags: 'Keys'
 
   - name: "User keys"
-    include: user_keys.yml
+    include_tasks: user_keys.yml
     with_flattened:
       - '{{ admins }}'
       - '{{ jailusers }}'
-- 
GitLab