ansible-role-nextcloud/tasks/install_nextcloud.yaml
2022-04-12 21:34:25 -04:00

16 lines
472 B
YAML

---
- name: Download latest Nextcloud {{ nextcloud_version }} tar.bz2 archive
ansible.builtin.unarchive:
src: "https://download.nextcloud.com/server/releases/latest-{{ nextcloud_version }}.tar.bz2"
dest: "{{ nextcloud_www_path }}"
extra_opts:
- --transform
- s/^nextcloud\///
- name: Change ownership of Nextcloud directories
ansible.builtin.file:
path: "{{ nextcloud_www_path }}"
owner: www-data
group: www-data
recurse: true