Reset file permissions as needed for settings

This commit is contained in:
Chris Thompson 2018-08-23 19:21:55 -04:00
parent 11aa71e827
commit 1f8681ffdb

View file

@ -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.
command: "composer install"
args: