mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 19:52:06 +00:00
14 lines
596 B
YAML
14 lines
596 B
YAML
|
- name: Remove /etc/owncloud to avoid confusion as we use the config in {{ owncloud_prefix }}/owncloud/config/
|
||
|
file: path=/etc/owncloud
|
||
|
state=absent
|
||
|
|
||
|
# but we use the tar file to get the latest version; really only benefits the xo4 on fedora 18
|
||
|
- name: Get the owncloud software
|
||
|
get_url: url="{{ owncloud_dl_url }}"/{{ owncloud_src_file }} dest={{ downloads_dir }}/{{ owncloud_src_file }}
|
||
|
when: not {{ use_cache }} and not {{ no_network }}
|
||
|
tags:
|
||
|
- download2
|
||
|
|
||
|
- name: Copy it to permanent location /opt
|
||
|
unarchive: src={{ downloads_dir }}/{{ owncloud_src_file }} dest=/opt/
|