Skip to content
Snippets Groups Projects
Commit 2e6b93b5 authored by jurgenhaas's avatar jurgenhaas
Browse files

ansible-playbooks/general#85 Quoting some strings

parent b45de002
Branches
No related tags found
No related merge requests found
--- ---
dependencies: dependencies:
- { role: common, when: ignore_these_tasks is defined } - role: common
- { role: php } when: ignore_these_tasks is defined
- { role: letsencrypt } - role: php
- { role: drupal-cli } - role: letsencrypt
- { role: jailkit } - role: drupal-cli
- role: jailkit
...@@ -49,7 +49,7 @@ ...@@ -49,7 +49,7 @@
prefer_dist: yes prefer_dist: yes
- name: Get Git Tag - 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: args:
chdir: '{{ webRoot }}' chdir: '{{ webRoot }}'
register: git_tag_info register: git_tag_info
......
...@@ -278,14 +278,14 @@ ...@@ -278,14 +278,14 @@
when: item.0.install|default(true) when: item.0.install|default(true)
- name: Set Extended Default Permissions - 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: tags:
- deploy - deploy
- SetPermissions - SetPermissions
when: drupal.install_extra_dirs|default(true) when: drupal.install_extra_dirs|default(true)
- name: Set Extended Permissions - 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: tags:
- deploy - deploy
- SetPermissions - SetPermissions
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
# chdir: '{{ webRoot }}' # chdir: '{{ webRoot }}'
- name: Drupalconsole Install Drupal - 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: args:
chdir: '{{ webRoot }}' chdir: '{{ webRoot }}'
......
...@@ -24,10 +24,10 @@ ...@@ -24,10 +24,10 @@
follow: no follow: no
- name: Extended Default File Modes and Ownership for Repository - 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 - 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: tags:
- SetPermissions - SetPermissions
...@@ -24,10 +24,10 @@ ...@@ -24,10 +24,10 @@
follow: no follow: no
- name: Extended Default File Modes and Ownership for Repository - 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 - 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: tags:
- SetPermissions - SetPermissions
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment