diff --git a/meta/main.yml b/meta/main.yml
index fe9ecb572670287e0bcae863e4777e4880c7a3bc..97b0ca38a8e595ac2de640ca9de4107fe14577e0 100644
--- a/meta/main.yml
+++ b/meta/main.yml
@@ -1,8 +1,9 @@
 ---
 
 dependencies:
-  - { role: common, when: ignore_these_tasks is defined }
-  - { role: php }
-  - { role: letsencrypt }
-  - { role: drupal-cli }
-  - { role: jailkit }
+  - role: common
+    when: ignore_these_tasks is defined
+  - role: php
+  - role: letsencrypt
+  - role: drupal-cli
+  - role: jailkit
diff --git a/tasks/deploy/gitcomposer.yml b/tasks/deploy/gitcomposer.yml
index eaf33bc0dbcee512286768e09268fd8b2d915693..e2ec0437b9ee47906630b18b51d9ac38f75736e9 100644
--- a/tasks/deploy/gitcomposer.yml
+++ b/tasks/deploy/gitcomposer.yml
@@ -49,7 +49,7 @@
       prefer_dist: yes
 
   - name: Get Git Tag
-    shell: git tag --points-at HEAD --sort -version:refname | head -1
+    shell: 'git tag --points-at HEAD --sort -version:refname | head -1'
     args:
       chdir: '{{ webRoot }}'
     register: git_tag_info
diff --git a/tasks/install.yml b/tasks/install.yml
index 35e0dab4ab60db7ccaa811c2a74d520a1269130c..2bd4358e2ff993f1dd84862aebde3416b1c2b7b8 100644
--- a/tasks/install.yml
+++ b/tasks/install.yml
@@ -278,14 +278,14 @@
   when: item.0.install|default(true)
 
 - name: Set Extended Default Permissions
-  command: setfacl -dRm u:{{ apacheUser }}:rwX,g:{{ apacheUser }}:rwX,o::rX {{ webRoot }}/files
+  command: 'setfacl -dRm u:{{ apacheUser }}:rwX,g:{{ apacheUser }}:rwX,o::rX {{ webRoot }}/files'
   tags:
     - deploy
     - SetPermissions
   when: drupal.install_extra_dirs|default(true)
 
 - name: Set Extended Permissions
-  command: setfacl -Rm u:{{ apacheUser }}:rwX,g:{{ apacheUser }}:rwX,o::rX {{ webRoot }}/files
+  command: 'setfacl -Rm u:{{ apacheUser }}:rwX,g:{{ apacheUser }}:rwX,o::rX {{ webRoot }}/files'
   tags:
     - deploy
     - SetPermissions
diff --git a/tasks/install/d8.yml b/tasks/install/d8.yml
index 1504e7258c866f52190bdc41ec409cd93193e214..f7186607503899834b4e9a88b17443afd1fd4fe0 100644
--- a/tasks/install/d8.yml
+++ b/tasks/install/d8.yml
@@ -9,7 +9,7 @@
   #     chdir: '{{ webRoot }}'
 
   - name: Drupalconsole Install Drupal
-    shell: drupal site:new {{ drupalRoot }} 8.1.1 --no-interaction
+    shell: 'drupal site:new {{ drupalRoot }} 8.1.1 --no-interaction'
     args:
       chdir: '{{ webRoot }}'
 
diff --git a/tasks/users/gitcomposer.yml b/tasks/users/gitcomposer.yml
index 9dfca946e85d7ccd16c6608e67fc26bee9e0a876..79d1ba99863a6e3046eeb04a4608cd83e1f8fe2b 100644
--- a/tasks/users/gitcomposer.yml
+++ b/tasks/users/gitcomposer.yml
@@ -24,10 +24,10 @@
         follow: no
 
     - name: Extended Default File Modes and Ownership for Repository
-      command: setfacl -dRm u:root:rwX,g:{{ drupal.src.name }}:rwX,o::rX {{ webRoot }}
+      command: 'setfacl -dRm u:root:rwX,g:{{ drupal.src.name }}:rwX,o::rX {{ webRoot }}'
 
     - name: Extended File Modes and Ownership for Repository
-      command: setfacl -Rm u:root:rwX,g:{{ drupal.src.name }}:rwX,o::rX {{ webRoot }}
+      command: 'setfacl -Rm u:root:rwX,g:{{ drupal.src.name }}:rwX,o::rX {{ webRoot }}'
 
   tags:
     - SetPermissions
diff --git a/tasks/users/gitscript.yml b/tasks/users/gitscript.yml
index 07ac19692e88e8f7a39ba99469243a1f49dfefda..384733256897666da07a29019b7557a40f3f4580 100644
--- a/tasks/users/gitscript.yml
+++ b/tasks/users/gitscript.yml
@@ -24,10 +24,10 @@
         follow: no
 
     - name: Extended Default File Modes and Ownership for Repository
-      command: setfacl -dRm u:root:rwX,g:{{ drupal.src.name }}:rwX,o::rX {{ webRoot }}{{ drupal.src.git.target }}
+      command: 'setfacl -dRm u:root:rwX,g:{{ drupal.src.name }}:rwX,o::rX {{ webRoot }}{{ drupal.src.git.target }}'
 
     - name: Extended File Modes and Ownership for Repository
-      command: setfacl -Rm u:root:rwX,g:{{ drupal.src.name }}:rwX,o::rX {{ webRoot }}{{ drupal.src.git.target }}
+      command: 'setfacl -Rm u:root:rwX,g:{{ drupal.src.name }}:rwX,o::rX {{ webRoot }}{{ drupal.src.git.target }}'
 
   tags:
     - SetPermissions