ansible.cfg 581 B

1234567891011121314151617181920212223
  1. # You may change any of these settings, but be aware of what they do
  2. # Referenace: http://docs.ansible.com/ansible/intro_configuration.html
  3. [defaults]
  4. # This fixes issues with /tmp being mounted noexec
  5. remote_tmp = ~/.ansible/tmp
  6. retry_files_enabled = false
  7. roles_path = roles
  8. become_flags = -H -S -n -E
  9. squash_actions = apk,apt,dnf,homebrew,pacman,pkgng,yum,zypper
  10. merge_multiple_cli_flags = true
  11. # SSH
  12. timeout = 10
  13. executable = /bin/bash
  14. #host_key_checking = False
  15. #remote_port = 22
  16. [ssh_connection]
  17. # Set this to false if you're getting sudo tty errors
  18. pipelining = true