This website requires JavaScript.
Explore
Help
Sign In
alanorth
/
ansible-personal
Watch
1
Star
0
Fork
0
You've already forked ansible-personal
Code
Issues
4
Pull Requests
Projects
Releases
Wiki
Activity
e5939c830a
ansible-personal
/
ansible.cfg
7 lines
91 B
INI
Raw
Normal View
History
Unescape
Escape
Add ansible.cfg Pipelining makes ansible run tasks much faster, and as of Ansible 2.0 or 2.1 or so, it now works on older hosts that have requiretty in their sudo config[0]. Also, disable the creation of those stupid retry files. [0] https://github.com/ansible/ansible/pull/13200
2016-08-22 12:04:13 +02:00
[defaults]
retry_files_enabled
=
False
ansible.cfg: Force handlers to run even if a task fails We don't want services to be left in a broken state just because a task fails and handlers that might have been notified fail to run.
2017-01-28 16:36:32 +01:00
force_handlers
=
True
ansible.cfg: Fix SSH pipelining config The docs aren't very clear on this to be honest, but this option needs to be under a [ssh_connection] section. See: http://docs.ansible.com/ansible/intro_configuration.html#pipelining See: https://review.openstack.org/#/c/331499/
2016-09-07 09:37:25 +02:00
[ssh_connection]
pipelining
=
True
Reference in New Issue
Copy Permalink