Matrix Docker Ansible eploy
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 

24 linhas
639 B

  1. ---
  2. - ansible.builtin.import_tasks: "{{ role_path }}/tasks/init.yml"
  3. tags:
  4. - always
  5. - ansible.builtin.import_tasks: "{{ role_path }}/tasks/setup_install.yml"
  6. when: run_setup | bool and matrix_etherpad_enabled | bool
  7. tags:
  8. - setup-all
  9. - setup-etherpad
  10. - ansible.builtin.import_tasks: "{{ role_path }}/tasks/setup_uninstall.yml"
  11. when: run_setup | bool and not matrix_etherpad_enabled | bool
  12. tags:
  13. - setup-all
  14. - setup-etherpad
  15. - ansible.builtin.import_tasks: "{{ role_path }}/tasks/validate_config.yml"
  16. when: run_setup | bool and matrix_etherpad_enabled | bool
  17. tags:
  18. - setup-all
  19. - setup-etherpad