From 1c1163473c9286e325283721849b2ec56d756e43 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 | 2 +-
 tasks/php.yml  | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/tasks/main.yml b/tasks/main.yml
index 39b93d7..545dbfa 100644
--- a/tasks/main.yml
+++ b/tasks/main.yml
@@ -11,7 +11,7 @@
 
 - block:
 
-  - include_tasks: php.yml
+  - import_tasks: php.yml
 
   - name: "Link PhpEnMod for PHP 5.3"
     file:
diff --git a/tasks/php.yml b/tasks/php.yml
index 3167af1..95bbeb2 100644
--- a/tasks/php.yml
+++ b/tasks/php.yml
@@ -49,7 +49,7 @@
   notify:
     - "Apache | Restart Apache"
 
-- include_tasks: php53.yml
+- import_tasks: php53.yml
   when: php_version|default('5.5') == '5.3'
 
 - name: "PHP | Configuration file, fcgid.conf"
@@ -106,7 +106,7 @@
     owner=www-data
     group=www-data
 
-- include_tasks: oci-{{ php_version|default('5.5') }}.yml
+- import_tasks: oci-{{ php_version|default('5.5') }}.yml
   when: repository is defined and php_needs_oci8
 
 - name: "PHP | Ensure ImageMagick config directory"
-- 
GitLab