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
No related branches found
No related tags found
No related merge requests found
---
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
......@@ -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
......
......@@ -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
......
......@@ -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 }}'
......
......@@ -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
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment