You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
873 B
29 lines
873 B
4 years ago
|
---
|
||
|
|
||
|
- name: Download Riot
|
||
|
get_url:
|
||
|
url: "https://github.com/vector-im/element-web/releases/download/v{{ element_version }}/element-v{{ element_version }}.tar.gz"
|
||
|
dest: "{{ element_root_dir }}/tmp/"
|
||
|
checksum: "sha1:{{ element_archive_sha1 }}"
|
||
|
when: element_install_mode != 'none'
|
||
|
tags: matrix
|
||
|
|
||
|
- name: Extract element archive
|
||
|
unarchive:
|
||
|
src: "{{ element_root_dir }}/tmp/element-v{{ element_version }}.tar.gz"
|
||
|
dest: "{{ element_root_dir }}/tmp/"
|
||
|
remote_src: True
|
||
|
when: element_install_mode != 'none'
|
||
|
tags: matrix
|
||
|
|
||
|
- name: Move the content of element to the correct top directory
|
||
|
synchronize:
|
||
|
src: "{{ element_root_dir }}/tmp/element-v{{ element_version }}/"
|
||
|
dest: "{{ element_root_dir }}/web/"
|
||
|
recursive: True
|
||
|
delete: True
|
||
|
delegate_to: "{{ inventory_hostname }}"
|
||
|
when: element_install_mode != 'none'
|
||
|
tags: matrix
|
||
|
|