File tree Expand file tree Collapse file tree 2 files changed +14
-12
lines changed
docker/samson-deployment/latest/conf/provision/roles/webdevops-samson-deployment/tasks
provisioning/samson-deployment/general/provision/roles/webdevops-samson-deployment/tasks Expand file tree Collapse file tree 2 files changed +14
-12
lines changed Original file line number Diff line number Diff line change 2828 state : link
2929 force : yes
3030
31+ - name : Fix permissions of public and asset directories
32+ command : find /app/public -type d -exec chmod -c 0755 {} \;
33+
3134- name : Fix permissions of public and asset files
32- file :
33- path : " /app/public"
34- owner : " {{ APPLICATION_USER }}"
35- group : " {{ APPLICATION_GROUP }}"
36- mode : u=rwX,g=rX,o=rX
37- recurse : yes
35+ command : find /app/public -type f -exec chmod -c 0644 {} \;
36+
37+ - name : Fix owner of public and asset files
38+ command : chown -R '{{ APPLICATION_USER }}:{{ APPLICATION_GROUP }}' /app/public
3839
3940- name : Remove old log directory
4041 file :
Original file line number Diff line number Diff line change 2828 state : link
2929 force : yes
3030
31+ - name : Fix permissions of public and asset directories
32+ command : find /app/public -type d -exec chmod -c 0755 {} \;
33+
3134- name : Fix permissions of public and asset files
32- file :
33- path : " /app/public"
34- owner : " {{ APPLICATION_USER }}"
35- group : " {{ APPLICATION_GROUP }}"
36- mode : u=rwX,g=rX,o=rX
37- recurse : yes
35+ command : find /app/public -type f -exec chmod -c 0644 {} \;
36+
37+ - name : Fix owner of public and asset files
38+ command : chown -R '{{ APPLICATION_USER }}:{{ APPLICATION_GROUP }}' /app/public
3839
3940- name : Remove old log directory
4041 file :
You can’t perform that action at this time.
0 commit comments