2022-02-05 21:32:54 +01:00
---
2022-07-18 09:39:08 +02:00
- ansible.builtin.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'] }}"
2022-07-18 10:22:05 +02:00
when : matrix_jitsi_enabled | bool
2022-05-03 07:10:16 +02:00
- name : Fail if on an unsupported architecture
2022-07-18 09:39:08 +02:00
ansible.builtin.fail :
2022-05-03 07:10:16 +02:00
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-18 10:22:05 +02:00
when : matrix_jitsi_enabled | bool and matrix_architecture not in ['amd64', 'arm64']