1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

Comment out chown stanza, per @benjaoming

This commit is contained in:
A Holt 2019-10-14 14:12:17 -04:00 committed by GitHub
parent 6bbfde4012
commit c11495951d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -100,15 +100,15 @@
become_user: "{{ kolibri_user }}"
when: kolibri_provision | bool
# 2019-10-14: QUESTION FOR @benjaoming...is this stanza really necessary
# (shouldn't migration & provisiondevice above be sufficient?)
- name: chown -R {{ kolibri_user }}:{{ apache_user }} {{ kolibri_home }} for good measure?
file:
path: "{{ kolibri_home }}" # /library/kolibri
owner: "{{ kolibri_user }}" # kolibri
group: "{{ apache_user }}" # www-data (on Debian/Ubuntu/Raspbian)
recurse: yes
when: kolibri_provision | bool
# 2019-10-14: This stanza should not be necessary according to @benjaoming
# (Benjamin Bach) especially as migration & provisiondevice were run above.
#- name: chown -R {{ kolibri_user }}:{{ apache_user }} {{ kolibri_home }} for good measure?
# file:
# path: "{{ kolibri_home }}" # /library/kolibri
# owner: "{{ kolibri_user }}" # kolibri
# group: "{{ apache_user }}" # www-data (on Debian/Ubuntu/Raspbian)
# recurse: yes
# when: kolibri_provision | bool
# 2019-10-07: Moved to roles/httpd/tasks/main.yml