summaryrefslogtreecommitdiff
path: root/lib/ansible/plugins/connection/ssh.py
Commit message (Expand)AuthorAgeFilesLines
* Ignore broken pipe errors if the sshpass process has exited (#16515)graywulf2016-06-301-1/+7
* made ssh compression configurable (#16214)Brian Coca2016-06-101-2/+0
* Disable sftp batch mode if sshpass (#15829)jctanner2016-05-131-1/+5
* Don't use -tt for ssh connections when sudoable=FalseJames Cammarata2016-04-111-3/+4
* Fix inconsistent/missing host names in messages.Matt Clay2016-03-251-1/+1
* Fix ssh connection plugin to work with python3Toshio Kuratomi2016-03-091-2/+2
* Fixing minor logic error in error detection/handling in ssh connection pluginJames Cammarata2016-03-081-1/+1
* Use to_bytes on filenames in filesystem calls.Matt Clay2016-03-041-1/+1
* Merge pull request #13654 from sivel/paramiko-proxy-commandMatt Martz2016-02-231-12/+2
|\
| * Move _split_args from ssh.py to ConnectionBase so we can use it in other conn...Matt Martz2015-12-241-12/+2
* | More fixes for unicode handling in the connection plugins.Toshio Kuratomi2016-01-061-15/+17
* | Fix problems with non-ascii values passed as part of the command to connectio...connection-plugins-unicode-fixToshio Kuratomi2016-01-041-4/+13
|/
* Revert "Enable host_key checking at the strategy level"James Cammarata2015-12-171-182/+11
* Revert "Fixing bugs in ssh known_host fetching"James Cammarata2015-12-171-21/+8
* Fixing bugs in ssh known_host fetchingJames Cammarata2015-12-171-8/+21
* Enable host_key checking at the strategy levelJames Cammarata2015-12-161-11/+182
* Clean up debug logging around _low_level_execute_commandAbhijit Menon-Sen2015-12-111-1/+1
* become_pass needs to be bytes when it is passed to ssh.Toshio Kuratomi2015-12-101-1/+1
* Revert "Make sudo+requiretty and ANSIBLE_PIPELINING work together"Toshio Kuratomi2015-12-031-11/+32
* Make sudo+requiretty and ANSIBLE_PIPELINING work togetherAbhijit Menon-Sen2015-12-011-32/+11
* Explicitly accept become_success in awaiting_prompt stateAbhijit Menon-Sen2015-11-261-5/+10
* Fix ssh state issues by simply assuming it's never connectedJames Cammarata2015-11-241-3/+2
* Properly check for prompting state when re-using ssh connectionJames Cammarata2015-11-241-1/+1
* Merge pull request #13156 from amenonsen/broken-timeoutBrian Coca2015-11-131-0/+4
|\
| * If ssh died, it's an error, not a timeoutAbhijit Menon-Sen2015-11-131-0/+4
* | Increase the escalation prompt timeoutDavid M. Lee2015-11-131-1/+4
|/
* Finish up plugin porting to global displayToshio Kuratomi2015-11-111-1/+0
* Move connection plugins to using global displayToshio Kuratomi2015-11-111-23/+31
* don't set user to current userBrian Coca2015-10-231-2/+1
* Cleaning up FIXMEsJames Cammarata2015-10-221-3/+1
* Make sure shlex split is returning properly encoded stringsJames Cammarata2015-10-091-1/+2
* Pass default None to getattr, remove repeated callAbhijit Menon-Sen2015-10-021-2/+3
* Set explicit default for ANSIBLE_SSH_ARGSAbhijit Menon-Sen2015-10-021-8/+1
* Aggregate ssh arguments in PlayContext instead of the connection pluginAbhijit Menon-Sen2015-10-021-27/+6
* Rework additional ssh argument handlingAbhijit Menon-Sen2015-10-021-28/+31
* Re-order the methods in ssh.py so that methods needed for implementation are ...Toshio Kuratomi2015-09-281-222/+228
* Move ControlPersist/Path checking into a separate methodAbhijit Menon-Sen2015-09-281-27/+37
* Move sshpass checking into a separate methodAbhijit Menon-Sen2015-09-281-15/+18
* Clarify why we add -q only for sshAbhijit Menon-Sen2015-09-281-0/+1
* Only append -q option for ssh if we're using sshJames Cammarata2015-09-261-1/+1
* Remove tmp as a parameter to the connection pluginsToshio Kuratomi2015-09-241-2/+2
* We don't need even a token timeout here; just poll onceAbhijit Menon-Sen2015-09-241-3/+5
* Clarify select() handling for ssh connectionsAbhijit Menon-Sen2015-09-241-19/+24
* remove the stdin return value from connection plugin exec_command() methodsToshio Kuratomi2015-09-241-1/+1
* A bit more debugging outputAbhijit Menon-Sen2015-09-231-3/+5
* Fix typo in checking select resultsAbhijit Menon-Sen2015-09-231-2/+2
* Conditionally poll longer if we're still waiting for an auth promptJames Cammarata2015-09-231-1/+5
* Don't use the connection timeout for the select poll timeoutJames Cammarata2015-09-231-1/+1
* Send initial data before calling select whenever possibleAbhijit Menon-Sen2015-09-231-9/+24
* Implement ssh connection handling as a state machineAbhijit Menon-Sen2015-09-231-103/+204