Matrix Docker Ansible eploy
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

30 lines
895 B

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