You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ansible.cfg.j2 508B

7 years ago
7 years ago
7 years ago
6 years ago
7 years ago
7 years ago
6 years ago
7 years ago
7 years ago
7 years ago
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 %}