From bca260d22f28713207db92ace9205c60fe484049 Mon Sep 17 00:00:00 2001
From: jurgenhaas <juergen@paragon-es.de>
Date: Wed, 12 Jun 2019 09:45:50 +0200
Subject: [PATCH] ansible-playbooks/general#85 Quoting some strings

---
 meta/main.yml     | 9 +++++----
 tasks/install.yml | 2 +-
 2 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/meta/main.yml b/meta/main.yml
index e58b772..e1b25e9 100644
--- a/meta/main.yml
+++ b/meta/main.yml
@@ -1,7 +1,8 @@
 ---
 
 dependencies:
-  - { role: common, when: ignore_these_tasks is defined }
-  - { role: php }
-  - { role: letsencrypt }
-  - { role: composer }
+  - role: common
+    when: ignore_these_tasks is defined
+  - role: php
+  - role: letsencrypt
+  - role: composer
diff --git a/tasks/install.yml b/tasks/install.yml
index 967958a..d89a3f7 100644
--- a/tasks/install.yml
+++ b/tasks/install.yml
@@ -58,7 +58,7 @@
 - name: Clone Git Repository
   git:
     accept_hostkey: yes
-    repo: git@github.com:matomo-org/matomo.git
+    repo: 'git@github.com:matomo-org/matomo.git'
     dest: '{{ webRoot }}'
     track_submodules: yes
     force: yes
-- 
GitLab