From 7732588b0ec87c9d03913860e157e73270c15e27 Mon Sep 17 00:00:00 2001
From: jurgenhaas <juergen@paragon-es.de>
Date: Tue, 11 Jun 2019 09:03:12 +0200
Subject: [PATCH] ansible-playbooks/general#85 Linting

---
 tasks/apache.yml  | 4 ++--
 tasks/install.yml | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/tasks/apache.yml b/tasks/apache.yml
index 1a606b5..759c086 100644
--- a/tasks/apache.yml
+++ b/tasks/apache.yml
@@ -11,14 +11,14 @@
         group: root
         mode: 0664
       notify:
-        - "Restart Apache"
+        - Restart Apache
 
     - name: Apache enable our new site(s)
       command: a2ensite {{ matomo.domain }}
       args:
         creates: /etc/apache2/sites-enabled/{{ matomo.domain }}{{ apache_conf_ext }}
       notify:
-        - "Restart Apache"
+        - Restart Apache
 
     - name: Apache install GeoIP
       apt:
diff --git a/tasks/install.yml b/tasks/install.yml
index fb42b7d..7275666 100644
--- a/tasks/install.yml
+++ b/tasks/install.yml
@@ -25,7 +25,7 @@
     path: '{{ item }}'
     state: absent
   with_items:
-    - {{ webRoot }}
+    - '{{( webRoot }})'
   when: matomo_force_reset
   tags:
     - always
@@ -38,7 +38,7 @@
     group: '{{ apacheUser }}'
     mode: 0775
   with_items:
-    - {{ webRoot }}
+    - '{{( webRoot }})'
   tags:
     - always
 
@@ -96,7 +96,7 @@
     group: '{{ apacheUser }}'
     mode: 0775
   with_items:
-    - {{ webRoot }}/tmp
+    - '{{( webRoot }}/tmp)'
   tags:
     - always
 
-- 
GitLab