diff options
author | Michael DeHaan <michael@ansibleworks.com> | 2013-07-06 03:42:41 +0200 |
---|---|---|
committer | Michael DeHaan <michael@ansibleworks.com> | 2013-07-06 04:06:54 +0200 |
commit | cf6e1f8db915e763b2fa5e29186b558a55cd8733 (patch) | |
tree | 53005354ed2e702fa36ec44eea258019e1d055b6 /examples | |
parent | Merge pull request #3450 from tonk/sudo (diff) | |
download | ansible-cf6e1f8db915e763b2fa5e29186b558a55cd8733.tar.xz ansible-cf6e1f8db915e763b2fa5e29186b558a55cd8733.zip |
Make it possible to tell paramiko to not record new host keys, which can be slow with a large number of hosts.
-c ssh is preferred in most cases if you have ControlPersist available, otherwise if you are comfortable you
can turn off recording while leaving host key checking on, etc.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/ansible.cfg | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/examples/ansible.cfg b/examples/ansible.cfg index 0e9e91de14..c76447dbb9 100644 --- a/examples/ansible.cfg +++ b/examples/ansible.cfg @@ -90,7 +90,11 @@ filter_plugins = /usr/share/ansible_plugins/filter_plugins [paramiko_connection] -# nothing configurable yet +# uncomment this line to cause the paramiko connection plugin to not record new host +# keys encountered. Increases performance. Setting works independently of the +# host key checking setting above. + +#record_host_keys=False [ssh_connection] |