mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
make pipelining actually backwards compatible
restore ssh specific setting the global, in the future these will be separate.
This commit is contained in:
parent
235d139e5d
commit
2d70dc7f21
1 changed files with 7 additions and 2 deletions
|
@ -65,9 +65,14 @@ ANSIBLE_PIPELINING:
|
||||||
- This can result in a very significant performance improvement when enabled.
|
- 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
|
- "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."
|
disable 'requiretty' in /etc/sudoers on all managed hosts, which is why it is disabled by default."
|
||||||
env: [{name: ANSIBLE_PIPELINING}]
|
env:
|
||||||
|
- name: ANSIBLE_SSH_PIPELINING
|
||||||
|
- name: ANSIBLE_PIPELINING
|
||||||
ini:
|
ini:
|
||||||
- {key: pipelining, section: connection}
|
- section: connection
|
||||||
|
key: pipelining
|
||||||
|
- section: ssh_connection
|
||||||
|
key: pipelining
|
||||||
type: boolean
|
type: boolean
|
||||||
yaml: {key: plugins.connection.pipelining}
|
yaml: {key: plugins.connection.pipelining}
|
||||||
ANSIBLE_SSH_ARGS:
|
ANSIBLE_SSH_ARGS:
|
||||||
|
|
Loading…
Reference in a new issue