Matrix Docker Ansible eploy
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

46 行
1.1 KiB

  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. - ansible.builtin.import_tasks: "{{ role_path }}/tasks/clean_up_old_files.yml"
  9. when: run_setup | bool
  10. tags:
  11. - setup-all
  12. - common
  13. - ansible.builtin.import_tasks: "{{ role_path }}/tasks/server_base/setup.yml"
  14. when: run_setup | bool
  15. tags:
  16. - setup-all
  17. - common
  18. # This needs to always run, because it populates `matrix_user_uid` and `matrix_user_gid`,
  19. # which are required by many other roles.
  20. - ansible.builtin.import_tasks: "{{ role_path }}/tasks/setup_matrix_user.yml"
  21. when: run_setup | bool
  22. tags:
  23. - always
  24. - setup-system-user
  25. - common
  26. - ansible.builtin.import_tasks: "{{ role_path }}/tasks/setup_matrix_base.yml"
  27. when: run_setup | bool
  28. tags:
  29. - setup-all
  30. - common
  31. - ansible.builtin.import_tasks: "{{ role_path }}/tasks/setup_well_known.yml"
  32. when: run_setup | bool
  33. tags:
  34. - setup-all
  35. - setup-ma1sd
  36. - setup-synapse
  37. - setup-dendrite
  38. - setup-nginx-proxy