mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2025-10-28 05:47:56 +01:00
Feat: Added element call setup and configuration.
This commit is contained in:
14
roles/custom/matrix-element-call/tasks/main.yml
Normal file
14
roles/custom/matrix-element-call/tasks/main.yml
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
# roles/custom/matrix-element-call/tasks/main.yml
|
||||
|
||||
- name: Ensure Element Call dependencies are valid and present
|
||||
when: matrix_element_call_enabled | bool
|
||||
ansible.builtin.include_tasks: "{{ role_path }}/tasks/validate_config.yml"
|
||||
|
||||
- name: Install Element Call and its related services
|
||||
when: matrix_element_call_enabled | bool
|
||||
ansible.builtin.include_tasks: "{{ role_path }}/tasks/install.yml"
|
||||
|
||||
- name: Uninstall Element Call and clean up resources
|
||||
when: not matrix_element_call_enabled | bool
|
||||
ansible.builtin.include_tasks: "{{ role_path }}/tasks/uninstall.yml"
|
||||
Reference in New Issue
Block a user