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.
 
 

31 righe
899 B

  1. ---
  2. - ansible.builtin.import_tasks: "{{ role_path }}/tasks/init.yml"
  3. tags:
  4. - always
  5. - ansible.builtin.import_tasks: "{{ role_path }}/tasks/validate_config.yml"
  6. when: "run_setup | bool and matrix_client_hydrogen_enabled | bool"
  7. tags:
  8. - setup-all
  9. - setup-client-hydrogen
  10. - ansible.builtin.import_tasks: "{{ role_path }}/tasks/setup_install.yml"
  11. when: "run_setup | bool and matrix_client_hydrogen_enabled | bool"
  12. tags:
  13. - setup-all
  14. - setup-client-hydrogen
  15. - ansible.builtin.import_tasks: "{{ role_path }}/tasks/setup_uninstall.yml"
  16. when: "run_setup | bool and not matrix_client_hydrogen_enabled | bool"
  17. tags:
  18. - setup-all
  19. - setup-client-hydrogen
  20. - ansible.builtin.import_tasks: "{{ role_path }}/tasks/self_check.yml"
  21. delegate_to: 127.0.0.1
  22. become: false
  23. when: "run_self_check | bool and matrix_client_hydrogen_enabled | bool"
  24. tags:
  25. - self-check