From 4a2a87dbbdc1815ffe70f04d6cd6862089a953c6 Mon Sep 17 00:00:00 2001
From: jurgenhaas <juergen@paragon-es.de>
Date: Wed, 8 Nov 2017 12:11:31 +0100
Subject: [PATCH] Put tags alsways in quotes

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

diff --git a/tasks/main.yml b/tasks/main.yml
index 477bd21..2e87328 100644
--- a/tasks/main.yml
+++ b/tasks/main.yml
@@ -10,7 +10,7 @@
   - include_tasks: install.yml
     tags: 'always'
   - include_tasks: configure.yml
-    tags: Config
+    tags: 'Config'
 
   when: '"haproxy" not in excluded_roles'
 
@@ -37,17 +37,17 @@
       path: '/etc/letsencrypt'
       owner: '{{ ansible_env.SUDO_USER }}'
       recurse: yes
-    tags: Certs
+    tags: 'Certs'
     when: proxy_active
 
-  tags: Certs
+  tags: 'Certs'
   when: 'proxy_active and "letsencrypt" not in excluded_roles'
 
 - block:
 
   - name: "Pull Certs from active Proxy"
     include_tasks: 'pullcerts.yml'
-    tags: Certs
+    tags: 'Certs'
 
   when: 'not proxy_active and "letsencrypt" not in excluded_roles'
 
@@ -56,5 +56,5 @@
     path: '/etc/letsencrypt'
     owner: 'root'
     recurse: yes
-  tags: Certs
+  tags: 'Certs'
   when: 'proxy_active and "letsencrypt" not in excluded_roles'
-- 
GitLab