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.

25 lines
509B

  1. [defaults]
  2. nocows = 1
  3. stdout_callback = yaml
  4. interpreter_python = auto_silent
  5. retry_files_enabled = False
  6. force_handlers = True
  7. library = /usr/share/ansible/library
  8. {% if ansible_use_mitogen %}
  9. # mitogen config
  10. strategy_plugins = {{ _ansible_mitogen_location.stdout }}/plugins/strategy
  11. strategy = mitogen_linear
  12. {% endif %}
  13. {% if ansible_use_ara %}
  14. # ara config
  15. {{ _ara_config.stdout_lines[1:] | join("\n") }}
  16. {% endif %}
  17. [ssh_connection]
  18. {% if ansible_use_ssh_pipelining %}
  19. pipelining = True
  20. {% endif %}