Added installing Nextcloud files
This commit is contained in:
parent
ec6514e978
commit
fee84b97f4
@ -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
|
||||
|
||||
|
15
tasks/install_nextcloud.yaml
Normal file
15
tasks/install_nextcloud.yaml
Normal 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
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user