Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

31 строка
878 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_cinny_enabled | bool"
  7. tags:
  8. - setup-all
  9. - setup-client-cinny
  10. - ansible.builtin.import_tasks: "{{ role_path }}/tasks/setup_install.yml"
  11. when: "run_setup | bool and matrix_client_cinny_enabled | bool"
  12. tags:
  13. - setup-all
  14. - setup-client-cinny
  15. - ansible.builtin.import_tasks: "{{ role_path }}/tasks/self_check.yml"
  16. delegate_to: 127.0.0.1
  17. become: false
  18. when: "run_self_check | bool and matrix_client_cinny_enabled | bool"
  19. tags:
  20. - self-check
  21. - ansible.builtin.import_tasks: "{{ role_path }}/tasks/setup_uninstall.yml"
  22. when: "run_setup | bool and not matrix_client_cinny_enabled | bool"
  23. tags:
  24. - setup-all
  25. - setup-client-cinny