From bd908911cdd81324394651e9a184cd504dee9931 Mon Sep 17 00:00:00 2001
From: jurgenhaas <juergen@paragon-es.de>
Date: Wed, 8 Nov 2017 12:02:46 +0100
Subject: [PATCH] ansible-playbooks/general#72 All includes are now
 include_tasks and they always have a tag associated

---
 tasks/main.yml | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/tasks/main.yml b/tasks/main.yml
index 6ebbd28..7529e4c 100755
--- a/tasks/main.yml
+++ b/tasks/main.yml
@@ -1,12 +1,15 @@
 ---
 
 - block:
-  - import_tasks: install.yml
-  - import_tasks: test.yml
+  - include_tasks: install.yml
+    tags: 'always'
+  - include_tasks: test.yml
     tags: 'update'
-  - import_tasks: configure.yml
-  - import_tasks: auth_json.yml
-  - import_tasks: update.yml
+  - include_tasks: configure.yml
+    tags: 'always'
+  - include_tasks: auth_json.yml
+    tags: 'always'
+  - include_tasks: update.yml
     when: composer_update == true
     tags: 'update'
   when: '"composer" not in excluded_roles'
-- 
GitLab