matrix-docker-ansible-deploy/roles/custom/matrix-jitsi/tasks/main.yml

42 lines
997 B
YAML
Raw Normal View History

---
2022-07-18 08:22:05 +00:00
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/init.yml"
2020-03-23 15:19:15 +00:00
tags:
- always
2022-07-18 08:22:05 +00:00
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/validate_config.yml"
when: "run_setup | bool and matrix_jitsi_enabled | bool"
tags:
- setup-all
- setup-jitsi
2022-07-18 08:22:05 +00:00
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/setup_jitsi_base.yml"
when: run_setup | bool
2020-03-23 15:19:15 +00:00
tags:
- setup-all
- setup-jitsi
2022-07-18 08:22:05 +00:00
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/setup_jitsi_web.yml"
when: run_setup | bool
2020-03-23 15:19:15 +00:00
tags:
- setup-all
- setup-jitsi
2022-07-18 08:22:05 +00:00
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/setup_jitsi_prosody.yml"
when: run_setup | bool
2020-03-23 15:19:15 +00:00
tags:
- setup-all
- setup-jitsi
2022-07-18 08:22:05 +00:00
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/setup_jitsi_jicofo.yml"
when: run_setup | bool
2020-03-23 15:19:15 +00:00
tags:
- setup-all
- setup-jitsi
2022-07-18 08:22:05 +00:00
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/setup_jitsi_jvb.yml"
when: run_setup | bool
2020-03-23 15:19:15 +00:00
tags:
- setup-all
- setup-jitsi