Matrix Docker Ansible eploy
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 

38 líneas
869 B

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