24 lines
560 B
YAML
24 lines
560 B
YAML
|
---
|
||
|
# Based on https://github.com/vector-im/riot-web#desktop-installation-for-debian-stretch
|
||
|
|
||
|
- name: Make APT support HTTPS protocol
|
||
|
apt:
|
||
|
name: apt-transport-https
|
||
|
update_cache: yes
|
||
|
|
||
|
- name: Configure Riot repository
|
||
|
apt_repository:
|
||
|
repo: "deb https://riot.im/packages/debian/ {{ ansible_distribution_release }} main"
|
||
|
|
||
|
- name: Configure Riot repository key
|
||
|
apt_key:
|
||
|
id: E019645248E8F4A1
|
||
|
url: https://riot.im/packages/debian/repo-key.asc
|
||
|
|
||
|
- name: Install Riot web
|
||
|
apt:
|
||
|
name: riot-web
|
||
|
update_cache: yes
|
||
|
|
||
|
# TODO host web page
|