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