Added installing Nextcloud files

This commit is contained in:
Corbin Bartsch 2022-04-12 12:31:28 -04:00
parent ec6514e978
commit fee84b97f4
Signed by: coredotbin
GPG Key ID: 32D3B80A08D93212
3 changed files with 20 additions and 6 deletions

View File

@ -3,6 +3,9 @@
# Your domain name for web server configuration
domain_name: 'localdomain'
# The major version of Nextcloud to install
nextcloud_version: 23
# The subdomain at which you'd like Nextcloud to be accessible at
nextcloud_subdomain: nextcloud

View File

@ -0,0 +1,15 @@
---
- 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

View File

@ -14,9 +14,5 @@
include_tasks: nginx_template.yaml
when: nextcloud_nginx
- name: Change ownership of Nextcloud directories
ansible.builtin.file:
path: "{{ nextcloud_www_path }}"
owner: www-data
group: www-data
recurse: true
- name: Install Nextcloud files
include_tasks: install_nextcloud.yaml