Matrix Docker Ansible eploy
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 

33 rader
909 B

  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