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.
 
 

33 lines
708 B

  1. - import_tasks: "{{ role_path }}/tasks/clean_up_old_files.yml"
  2. when: run_setup
  3. tags:
  4. - setup-all
  5. - import_tasks: "{{ role_path }}/tasks/setup_server_base.yml"
  6. when: run_setup
  7. tags:
  8. - setup-all
  9. - import_tasks: "{{ role_path }}/tasks/setup_matrix_base.yml"
  10. when: run_setup
  11. tags:
  12. - setup-all
  13. - import_tasks: "{{ role_path }}/tasks/setup_well_known.yml"
  14. when: run_setup
  15. tags:
  16. - setup-all
  17. - setup-mxisd
  18. - setup-synapse
  19. - setup-nginx-proxy
  20. - import_tasks: "{{ role_path }}/tasks/sanity_check.yml"
  21. tags:
  22. - always
  23. - import_tasks: "{{ role_path }}/tasks/self_check_dns.yml"
  24. delegate_to: 127.0.0.1
  25. become: false
  26. when: run_self_check
  27. tags:
  28. - self-check