nextcloud: fix the path of the installation directory.

This commit is contained in:
Andrea Dell'Amico 2019-03-26 17:42:45 +01:00
parent 3f7e05bdf0
commit aef871b4c0
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@
get_url: url={{ nextcloud_download_url }} dest=/srv/{{ nextcloud_dist_filename }}
- name: Unpack the nextcloud archive
unarchive: remote_src=yes src=/srv/{{ nextcloud_dist_filename }} dest={{ item.doc_root }} owner={{ item.user }} group={{ item.user }}
unarchive: remote_src=yes src=/srv/{{ nextcloud_dist_filename }} dest={{ nextcloud_web_basedir }} owner={{ item.user }} group={{ item.user }}
args:
creates: '{{ item.doc_root }}/index.php'
with_items: '{{ phpfpm_pools }}'