Matrix Docker Ansible eploy
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 

41 lignes
999 B

  1. - import_tasks: "{{ role_path }}/tasks/init.yml"
  2. tags:
  3. - always
  4. - import_tasks: "{{ role_path }}/tasks/validate_config.yml"
  5. when: run_setup|bool
  6. tags:
  7. - setup-all
  8. - setup-dendrite
  9. - import_tasks: "{{ role_path }}/tasks/setup_dendrite.yml"
  10. when: run_setup|bool
  11. tags:
  12. - setup-all
  13. - setup-dendrite
  14. - import_tasks: "{{ role_path }}/tasks/register_user.yml"
  15. when: run_dendrite_register_user|bool and matrix_dendrite_enabled|bool
  16. tags:
  17. - register-user
  18. - import_tasks: "{{ role_path }}/tasks/self_check_client_api.yml"
  19. delegate_to: 127.0.0.1
  20. become: false
  21. when: run_self_check|bool and matrix_dendrite_enabled|bool
  22. tags:
  23. - self-check
  24. - import_tasks: "{{ role_path }}/tasks/self_check_federation_api.yml"
  25. delegate_to: 127.0.0.1
  26. become: false
  27. when: run_self_check|bool and matrix_dendrite_enabled|bool
  28. tags:
  29. - self-check
  30. - name: Mark matrix-dendrite role as executed
  31. set_fact:
  32. matrix_dendrite_role_executed: true
  33. tags:
  34. - always