2022-02-05 21:32:54 +01:00
---
2020-03-23 16:19:15 +01:00
- set_fact :
2021-01-14 22:02:10 +01:00
matrix_systemd_services_list : "{{ matrix_systemd_services_list + ['matrix-jitsi-web.service', 'matrix-jitsi-prosody.service', 'matrix-jitsi-jicofo.service', 'matrix-jitsi-jvb.service'] }}"
2020-03-23 16:19:15 +01:00
when : matrix_jitsi_enabled|bool
2022-05-03 07:10:16 +02:00
- name : Fail if on an unsupported architecture
fail :
msg : "Jitsi only supports the amd64 architecture right now. See https://github.com/jitsi/docker-jitsi-meet/issues/1069 and https://github.com/jitsi/docker-jitsi-meet/issues/1214"
2022-07-01 16:56:09 +02:00
when : matrix_jitsi_enabled|bool and matrix_architecture not in ['amd64', 'arm64']