diff --git a/docs/configuring-playbook-jitsi.md b/docs/configuring-playbook-jitsi.md index a30dc389f..8a28753aa 100644 --- a/docs/configuring-playbook-jitsi.md +++ b/docs/configuring-playbook-jitsi.md @@ -131,8 +131,8 @@ You may want to **limit the maximum video resolution**, to save up resources on By default, a single JVB ([Jitsi VideoBridge](https://github.com/jitsi/jitsi-videobridge)) is deployed on the same host as the Matrix server. To allow more video-conferences to happen at the same time, you may need to provision additional JVB services on other hosts. -There is a ansible role that can be run with the following tag: -` ansible-playbook -i inventory/hosts --limit jitsi_jvb_servers setup.yml --tags=common,setup-additional-jitsi-jvb,start` +There is an ansible playbook that can be run with the following tag: +` ansible-playbook -i inventory/hosts --limit jitsi_jvb_servers jitsi_jvb.yml --tags=common,setup-additional-jitsi-jvb,start` For this role to work you will need an additional section in the ansible hosts file with the details of the JVB hosts, for example: ``` diff --git a/playbooks/jitsi_jvb.yml b/playbooks/jitsi_jvb.yml index f19800908..ca08bd276 100644 --- a/playbooks/jitsi_jvb.yml +++ b/playbooks/jitsi_jvb.yml @@ -4,9 +4,9 @@ become: true roles: - - role: galaxy/com.devture.ansible.role.playbook_help - - role: galaxy/com.devture.ansible.role.systemd_docker_base + - role: roles/galaxy/com.devture.ansible.role.playbook_help + - role: roles/galaxy/com.devture.ansible.role.systemd_docker_base - - custom/matrix-base - - custom/matrix-jitsi - - custom/matrix-common-after + - roles/custom/matrix-base + - roles/custom/matrix-jitsi + - roles/custom/matrix-common-after