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.
 
 

41 lines
973 B

  1. - import_tasks: "{{ role_path }}/tasks/sanity_check.yml"
  2. tags:
  3. - always
  4. - import_tasks: "{{ role_path }}/tasks/clean_up_old_files.yml"
  5. when: run_setup|bool
  6. tags:
  7. - setup-all
  8. - import_tasks: "{{ role_path }}/tasks/server_base/setup.yml"
  9. when: run_setup|bool
  10. tags:
  11. - setup-all
  12. # This needs to always run, because it populates `matrix_user_uid` and `matrix_user_gid`,
  13. # which are required by many other roles.
  14. - import_tasks: "{{ role_path }}/tasks/setup_matrix_user.yml"
  15. when: run_setup|bool
  16. tags:
  17. - always
  18. - import_tasks: "{{ role_path }}/tasks/setup_matrix_base.yml"
  19. when: run_setup|bool
  20. tags:
  21. - setup-all
  22. - import_tasks: "{{ role_path }}/tasks/setup_well_known.yml"
  23. when: run_setup|bool
  24. tags:
  25. - setup-all
  26. - setup-ma1sd
  27. - setup-synapse
  28. - setup-nginx-proxy
  29. - import_tasks: "{{ role_path }}/tasks/self_check_dns.yml"
  30. delegate_to: 127.0.0.1
  31. become: false
  32. when: run_self_check|bool
  33. tags:
  34. - self-check