remove unused ssh pipelining setters

fixes #31125
This commit is contained in:
Brian Coca
2017-10-02 09:17:08 -04:00
committed by Brian Coca
parent 9b693235f0
commit 101377768b
3 changed files with 11 additions and 17 deletions

View File

@@ -115,19 +115,6 @@ ANSIBLE_SSH_EXECUTABLE:
- {key: ssh_executable, section: ssh_connection}
yaml: {key: ssh_connection.ssh_executable}
version_added: "2.2"
ANSIBLE_SSH_PIPELINING:
# TODO: move to ssh plugin
default: False
description:
- Pipelining reduces the number of SSH operations required to execute a module on the remote server,
by executing many Ansible modules without actual file transfer.
- This can result in a very significant performance improvement when enabled.
- "However this conflicts with privilege escalation (become). For example, when using 'sudo:' operations you must first disable 'requiretty' in /etc/sudoers on all managed hosts, which is why it is disabled by default."
env: [{name: ANSIBLE_SSH_PIPELINING}]
ini:
- {key: pipelining, section: ssh_connection}
type: boolean
yaml: {key: ssh_connection.pipelining}
ANSIBLE_SSH_RETRIES:
# TODO: move to ssh plugin
default: 0