From bb6836e74346e7bef96514d9391a6d41c9571981 Mon Sep 17 00:00:00 2001
From: jurgenhaas <juergen@paragon-es.de>
Date: Wed, 8 Nov 2017 10:57:28 +0100
Subject: [PATCH] ansible-playbooks/general#72 Replace include_tasks with
 import_tasks

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

diff --git a/tasks/main.yml b/tasks/main.yml
index 3bef0cc..38e588b 100644
--- a/tasks/main.yml
+++ b/tasks/main.yml
@@ -12,10 +12,10 @@
       path: '/etc/init.d/zabbix-agent'
     register: zabbix_available
 
-  - include_tasks: install.yml
+  - import_tasks: install.yml
     when: not zabbix_available.stat.exists
 
-  - include_tasks: config.yml
+  - import_tasks: config.yml
 
   - name: 'Remember that this role had been run'
     set_fact: role_zabbix_agent_completed=true
-- 
GitLab