Matrix Docker Ansible eploy
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 

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