Você não pode selecionar mais de 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.

ansible.cfg.j2 508B

7 anos atrás
7 anos atrás
7 anos atrás
6 anos atrás
7 anos atrás
7 anos atrás
6 anos atrás
7 anos atrás
7 anos atrás
7 anos atrás
123456789101112131415161718192021222324
  1. [defaults]
  2. nocows = 1
  3. stdout_callback = yaml
  4. library = /usr/share/ansible/library
  5. {% if ansible_use_mitogen %}
  6. strategy_plugins = {{ _ansible_mitogen_location.stdout }}/plugins/strategy
  7. strategy = mitogen_linear
  8. {% endif %}
  9. retry_files_enabled = False
  10. force_handlers = True
  11. {% if ansible_use_ara %}
  12. callback_plugins = {{ _ara_location.stdout }}/plugins/callbacks
  13. {% endif %}
  14. {% if not ansible_use_mitogen %}
  15. [ssh_connection]
  16. {% if ansible_use_ssh_pipelining %}
  17. pipelining = True
  18. {% endif %}
  19. {% endif %}