diff options
author | Michael DeHaan <michael.dehaan@gmail.com> | 2013-05-08 14:51:01 +0200 |
---|---|---|
committer | Michael DeHaan <michael.dehaan@gmail.com> | 2013-05-08 14:51:01 +0200 |
commit | 8ef18c2f9841375c73352f5abc39d499786dd046 (patch) | |
tree | 9233642ab0b142142ed70ea2978f94781e3c6b7f /examples | |
parent | Merge pull request #2859 from swayf/fix/authorized_key_chown_on_link (diff) | |
download | ansible-8ef18c2f9841375c73352f5abc39d499786dd046.tar.xz ansible-8ef18c2f9841375c73352f5abc39d499786dd046.zip |
Don't set PasswordAuthentication=no here because the connection plugin will do that unless a password is actually specified with -k/--ask-pass.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/ansible.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/ansible.cfg b/examples/ansible.cfg index c7fefb4fa7..e11f0541f1 100644 --- a/examples/ansible.cfg +++ b/examples/ansible.cfg @@ -145,7 +145,7 @@ filter_plugins = /usr/share/ansible_plugins/filter_plugins # will result in poor performance, so use transport=paramiko on older platforms rather than # removing it -ssh_args=-o PasswordAuthentication=no -o ControlMaster=auto -o ControlPersist=60s -o ControlPath=/tmp/ansible-ssh-%h-%p-%r +ssh_args=-o ControlMaster=auto -o ControlPersist=60s -o ControlPath=/tmp/ansible-ssh-%h-%p-%r # the following makes ansible use scp if the connection type is ssh (default is sftp) |