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.
 
 

36 lines
990 B

  1. ---
  2. - tags:
  3. - setup-all
  4. - setup-dendrite
  5. - install-all
  6. - install-dendrite
  7. block:
  8. - when: matrix_dendrite_enabled | bool
  9. ansible.builtin.include_tasks: "{{ role_path }}/tasks/validate_config.yml"
  10. - when: matrix_dendrite_enabled | bool
  11. ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_install.yml"
  12. - tags:
  13. - setup-all
  14. - setup-dendrite
  15. block:
  16. - when: not matrix_dendrite_enabled | bool
  17. ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_uninstall.yml"
  18. - tags:
  19. - self-check
  20. block:
  21. - when: matrix_dendrite_enabled | bool
  22. ansible.builtin.include_tasks: "{{ role_path }}/tasks/self_check_client_api.yml"
  23. - when: matrix_dendrite_enabled | bool
  24. ansible.builtin.include_tasks: "{{ role_path }}/tasks/self_check_federation_api.yml"
  25. - tags:
  26. - register-user
  27. block:
  28. - when: matrix_dendrite_enabled | bool
  29. ansible.builtin.include_tasks: "{{ role_path }}/tasks/register_user.yml"