Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

14 lines
577 B

  1. ---
  2. # roles/custom/matrix-element-call/tasks/main.yml
  3. - name: Ensure Element Call dependencies are valid and present
  4. when: matrix_element_call_enabled | bool
  5. ansible.builtin.include_tasks: "{{ role_path }}/tasks/validate_config.yml"
  6. - name: Install Element Call and its related services
  7. when: matrix_element_call_enabled | bool
  8. ansible.builtin.include_tasks: "{{ role_path }}/tasks/install.yml"
  9. - name: Uninstall Element Call and clean up resources
  10. when: not matrix_element_call_enabled | bool
  11. ansible.builtin.include_tasks: "{{ role_path }}/tasks/uninstall.yml"