Matrix Docker Ansible eploy
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 

34 satır
734 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/setup_server_base.yml"
  9. when: run_setup|bool
  10. tags:
  11. - setup-all
  12. - import_tasks: "{{ role_path }}/tasks/setup_matrix_base.yml"
  13. when: run_setup|bool
  14. tags:
  15. - setup-all
  16. - import_tasks: "{{ role_path }}/tasks/setup_well_known.yml"
  17. when: run_setup|bool
  18. tags:
  19. - setup-all
  20. - setup-mxisd
  21. - setup-synapse
  22. - setup-nginx-proxy
  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|bool
  27. tags:
  28. - self-check