preparations for installation preconf nextcloud

This commit is contained in:
2022-06-24 16:20:12 +02:00
parent 7659bdbd32
commit 43e90a3767
6 changed files with 103 additions and 1 deletions

View File

@@ -1 +1,14 @@
- import_tasks: apps/nextcloud/prereq.yml
- import_vars: nextcloud.yml
- import_tasks: apps/nextcloud/prereq.yml
- name: webserver | nextcloud | get tar ball
uri:
url: "https://download.nextcloud.com/server/releases/latest.zip"
dest: "/tmp/nextcloud_latest.zip"
- name: webserver | nextcloud | extract archive
unarchive:
src: "/tmp/nextcloud_latest.zip"
dest: "/var/www/nextcloud/"
owner: "{{ webuser }}"