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.
|
- name: install git
|
|
apt:
|
|
name: "{{ item }}"
|
|
with_items:
|
|
- git
|
|
|
|
- file:
|
|
path: /srv/riot-web
|
|
state: directory
|
|
mode: 0755
|
|
owner: www-data
|
|
group: www-data
|
|
|
|
- unarchive:
|
|
src: "https://github.com/vector-im/riot-web/releases/download/{{ riot_web_version }}/riot-{{ riot_web_version }}.tar.gz"
|
|
dest: /srv/riot-web
|
|
remote_src: True
|
|
owner: www-data
|
|
group: www-data
|
|
|
|
- template:
|
|
src: config.json.j2
|
|
dest: "/srv/riot-web/riot-{{ riot_web_version }}/config.json"
|