Add initial role for Dendrite as alternative Matrix server

This commit is contained in:
Jip J. Dekker
2021-01-24 17:41:11 +11:00
committed by Slavi Pantaleev
parent 4e01082644
commit 07af05690c
25 changed files with 3893 additions and 0 deletions

View File

@ -0,0 +1,12 @@
- set_fact:
matrix_systemd_services_list: "{{ matrix_systemd_services_list + ['matrix-dendrite.service'] }}"
when: matrix_dendrite_enabled|bool
- set_fact:
matrix_systemd_services_list: "{{ matrix_systemd_services_list + ['matrix-goofys.service'] }}"
when: matrix_s3_media_store_enabled|bool
- name: Fail when using also using Synapse
fail:
msg: "To use Dendrite as your matrix server, you should disable Synapse."
when: "matrix_dendrite_enabled and matrix_synapse_enabled"