mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2026-07-13 02:14:22 +03:00
eb6328e5e9
The galaxy roles were renamed to shorter install paths back in
c0595d6e4 (2023-11-19), but jitsi_jvb.yml was not updated, so running
it failed with 'role not found' ever since.
Reported in https://github.com/spantaleev/matrix-docker-ansible-deploy/pull/5269 by @mcepl
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
43 lines
1.1 KiB
YAML
43 lines
1.1 KiB
YAML
# SPDX-FileCopyrightText: 2022 Warren Bailey
|
|
# SPDX-FileCopyrightText: 2023 Antonis Christofides
|
|
# SPDX-FileCopyrightText: 2023 Slavi Pantaleev
|
|
# SPDX-FileCopyrightText: 2025 Suguru Hirahara
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
---
|
|
- name: "Set up additional Jitsi Videobridge (JVB) servers"
|
|
hosts: "jitsi_jvb_servers"
|
|
become: true
|
|
|
|
roles:
|
|
- role: galaxy/playbook_help
|
|
- role: galaxy/systemd_docker_base
|
|
|
|
- when: matrix_playbook_docker_installation_enabled | bool
|
|
role: galaxy/docker
|
|
vars:
|
|
docker_install_compose: false
|
|
tags:
|
|
- setup-docker
|
|
- setup-all
|
|
- setup-additional-jitsi-jvb
|
|
- install-docker
|
|
- install-all
|
|
|
|
- when: devture_docker_sdk_for_python_installation_enabled | bool
|
|
role: galaxy/docker_sdk_for_python
|
|
tags:
|
|
- setup-docker
|
|
- setup-all
|
|
- setup-additional-jitsi-jvb
|
|
- install-docker
|
|
- install-all
|
|
|
|
- custom/matrix-base
|
|
- galaxy/jitsi
|
|
- custom/matrix-common-after
|
|
|
|
- when: devture_systemd_service_manager_enabled | bool
|
|
role: galaxy/systemd_service_manager
|