11 lines
267 B
YAML
11 lines
267 B
YAML
|
---
|
||
|
- name: Setup directory permissions for files directories
|
||
|
become: true
|
||
|
file:
|
||
|
path: '{{ ansistrano_shared_path }}/{{ project_web_dir }}/sites/default/files'
|
||
|
state: directory
|
||
|
owner: www-data
|
||
|
group: root
|
||
|
mode: u=rwx,g=rw,o=
|
||
|
recurse: true
|