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