Matrix Docker Ansible eploy
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 

39 Zeilen
1.0 KiB

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