From f60d4e194c8f391b355b34b873e4f8d3d5428e1c 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 1966f6c..cb135b8 100644
--- a/tasks/main.yml
+++ b/tasks/main.yml
@@ -22,9 +22,9 @@
     register: last_result
     ignore_errors: yes
 
-  - include_tasks: prepare.yml
+  - import_tasks: prepare.yml
     when: "last_result is defined and last_result.stdout != oracle_version"
 
-  - include_tasks: configure.yml
+  - import_tasks: configure.yml
 
   when: '"oracle" not in excluded_roles'
-- 
GitLab