3
0
mirror of https://github.com/spantaleev/matrix-docker-ansible-deploy.git synced 2025-10-19 06:33:24 +00:00

renamed the livekit role and added livekit-server and jwt-service roles to the setup file.

This commit is contained in:
wjbeckett
2024-10-01 09:31:42 +10:00
parent 8cb7deff15
commit 97f93ebd76
9 changed files with 2 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
---
# Main task file for matrix-livekit-server
- tags:
- setup-all
- setup-livekit-server
- install-all
- install-livekit-server
block:
- when: matrix_livekit_server_enabled | bool
ansible.builtin.include_tasks: "{{ role_path }}/tasks/validate_config.yml"
- when: matrix_livekit_server_enabled | bool
ansible.builtin.include_tasks: "{{ role_path }}/tasks/install.yml"
- tags:
- setup-all
- setup-livekit-server
block:
- when: not matrix_livekit_server_enabled | bool
ansible.builtin.include_tasks: "{{ role_path }}/tasks/uninstall.yml"