Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

ansible.cfg.j2 554B

7 år sedan
7 år sedan
6 år sedan
6 år sedan
6 år sedan
7 år sedan
7 år sedan
1234567891011121314151617181920212223242526
  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 not ansible_use_mitogen %}
  19. {% if ansible_use_ssh_pipelining %}
  20. pipelining = True
  21. {% endif %}
  22. {% endif %}