Reset file permissions as needed for settings
This commit is contained in:
parent
11aa71e827
commit
1f8681ffdb
1 changed files with 12 additions and 0 deletions
|
@ -1,4 +1,16 @@
|
||||||
---
|
---
|
||||||
|
- name: ensure settings location is still writable
|
||||||
|
file:
|
||||||
|
path: "{{ drupal_core_path }}/sites/default"
|
||||||
|
mode: 0775
|
||||||
|
state: directory
|
||||||
|
|
||||||
|
- name: ensure settings file is still writable
|
||||||
|
file:
|
||||||
|
path: "{{ drupal_core_path }}/sites/default/settings.php"
|
||||||
|
mode: 0664
|
||||||
|
state: file
|
||||||
|
|
||||||
- name: Run composer install.
|
- name: Run composer install.
|
||||||
command: "composer install"
|
command: "composer install"
|
||||||
args:
|
args:
|
||||||
|
|
Loading…
Reference in a new issue