Matrix Docker Ansible eploy
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 

34 righe
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/server_base/setup.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-ma1sd
  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