ansible.cfg 639 B

123456789101112131415161718192021
  1. # config file for ansible -- http://ansible.com/
  2. # ==============================================
  3. [defaults]
  4. forks = 50
  5. # work around privilege escalation timeouts in ansible
  6. timeout = 30
  7. host_key_checking = false
  8. inventory = inventory
  9. inventory_ignore_extensions = secrets.py, .pyc
  10. gathering = smart
  11. retry_files_enabled = false
  12. fact_caching = jsonfile
  13. fact_caching_connection = .ansible/cached_facts
  14. fact_caching_timeout = 900
  15. stdout_callback = skippy
  16. callback_whitelist = profile_tasks
  17. [ssh_connection]
  18. ssh_args = -o ControlMaster=auto -o ControlPersist=900s -o GSSAPIAuthentication=no
  19. control_path = /var/tmp/%%h-%%r
  20. pipelining = True