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.
 
 

34 lines
842 B

  1. ---
  2. - ansible.builtin.import_tasks: "{{ role_path }}/tasks/system_check.yml"
  3. tags:
  4. - always
  5. - ansible.builtin.import_tasks: "{{ role_path }}/tasks/sanity_check.yml"
  6. tags:
  7. - setup-all
  8. # This needs to always run, because it populates `matrix_user_uid` and `matrix_user_gid`,
  9. # which are required by many other roles.
  10. - ansible.builtin.import_tasks: "{{ role_path }}/tasks/setup_matrix_user.yml"
  11. when: run_setup | bool
  12. tags:
  13. - always
  14. - setup-system-user
  15. - common
  16. - ansible.builtin.import_tasks: "{{ role_path }}/tasks/setup_matrix_base.yml"
  17. when: run_setup | bool
  18. tags:
  19. - setup-all
  20. - common
  21. - ansible.builtin.import_tasks: "{{ role_path }}/tasks/setup_well_known.yml"
  22. when: run_setup | bool
  23. tags:
  24. - setup-all
  25. - setup-ma1sd
  26. - setup-synapse
  27. - setup-dendrite
  28. - setup-nginx-proxy