diff options
author | Michael DeHaan <michael@ansibleworks.com> | 2013-07-03 22:47:20 +0200 |
---|---|---|
committer | Michael DeHaan <michael@ansibleworks.com> | 2013-07-03 22:47:20 +0200 |
commit | 9db4f7a9a649a923b88878aa8f04d8394abacff2 (patch) | |
tree | 58a68f110df3bdfaf16c48c384e54d10475f68c4 /examples | |
parent | Merge pull request #3427 from insom/issue3409 (diff) | |
download | ansible-9db4f7a9a649a923b88878aa8f04d8394abacff2.tar.xz ansible-9db4f7a9a649a923b88878aa8f04d8394abacff2.zip |
Makes host key checking the default behavior but can be disabled in ansible.cfg or by environment variable.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/ansible.cfg | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/ansible.cfg b/examples/ansible.cfg index cd5af53722..379271e84c 100644 --- a/examples/ansible.cfg +++ b/examples/ansible.cfg @@ -22,6 +22,9 @@ sudo_user = root transport = paramiko remote_port = 22 +# uncomment this to disable SSH key host checking +#host_checking = False + # change this for alternative sudo implementations sudo_exe = sudo |