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.
This commit is contained in:
Michael DeHaan
2013-07-05 21:42:41 -04:00
parent 14818af446
commit cf6e1f8db9
3 changed files with 13 additions and 3 deletions

View File

@@ -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]