2017-05-29 22:02:55 +00:00
|
|
|
- name: Remove /etc/nextcloud to avoid confusion as we use the config in {{ nextcloud_prefix }}/nextcloud/config/
|
|
|
|
file: path=/etc/nextcloud
|
|
|
|
state=absent
|
|
|
|
|
|
|
|
# but we use the tar file to get the latest version; really only benefits the xo4 on fedora 18
|
|
|
|
- name: Get the nextcloud software
|
|
|
|
get_url: url="{{ nextcloud_dl_url }}"/{{ nextcloud_src_file }} dest={{ downloads_dir }}/{{ nextcloud_src_file }}
|
2017-06-29 17:48:41 +00:00
|
|
|
when: internet_available
|
2017-05-29 22:02:55 +00:00
|
|
|
|
|
|
|
- name: Copy it to permanent location /opt
|
|
|
|
unarchive: src={{ downloads_dir }}/{{ nextcloud_src_file }} dest=/opt/
|