Add Matrix synapse
This commit is contained in:
parent
feed96e103
commit
36434e3323
5 changed files with 23 additions and 6 deletions
1
hosts
1
hosts
|
@ -5,6 +5,7 @@ horus ansible_host=10.128.0.1
|
||||||
|
|
||||||
[ovh-container]
|
[ovh-container]
|
||||||
riot.adm.auro.re
|
riot.adm.auro.re
|
||||||
|
synapse.adm.auro.re
|
||||||
codimd.adm.auro.re
|
codimd.adm.auro.re
|
||||||
services-bdd.adm.auro.re
|
services-bdd.adm.auro.re
|
||||||
phabricator.adm.auro.re
|
phabricator.adm.auro.re
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
---
|
|
||||||
# Install Riot on Riot containers
|
|
||||||
- hosts: riot.adm.auro.re
|
|
||||||
roles:
|
|
||||||
- matrix-riot
|
|
||||||
|
|
12
matrix.yml
Normal file
12
matrix.yml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
---
|
||||||
|
# Install Matrix Synapse on corresponding containers
|
||||||
|
- hosts: synapse.adm.auro.re
|
||||||
|
roles:
|
||||||
|
- debian-backports
|
||||||
|
- matrix-synapse
|
||||||
|
|
||||||
|
# Install Matrix Riot on corresponding containers
|
||||||
|
- hosts: riot.adm.auro.re
|
||||||
|
roles:
|
||||||
|
- matrix-riot
|
||||||
|
|
3
roles/matrix-synapse/README.md
Normal file
3
roles/matrix-synapse/README.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# Rôle Matrix Synapse
|
||||||
|
|
||||||
|
Rôle simple pour synapse.
|
7
roles/matrix-synapse/tasks/main.yml
Normal file
7
roles/matrix-synapse/tasks/main.yml
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
---
|
||||||
|
- name: Install matrix-synapse
|
||||||
|
apt:
|
||||||
|
name: matrix-synapse
|
||||||
|
update_cache: yes
|
||||||
|
default_release: stretch-backports
|
||||||
|
|
Loading…
Reference in a new issue