mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-24 03:11:24 -07:00
made ssh compression configurable (#16214)
AIX ssh does not seem to like compression, moved it to ssh_args to allow making it configurable. Note that those using ssh_args already will need to add it explicitly to keep compression.
This commit is contained in:
parent
ece1ed09d5
commit
de18566882
3 changed files with 3 additions and 5 deletions
|
@ -141,8 +141,6 @@ class Connection(ConnectionBase):
|
|||
self._add_args('disable batch mode for sshpass', ['-o', 'BatchMode=no'])
|
||||
self._command += ['-b', '-']
|
||||
|
||||
self._command += ['-C']
|
||||
|
||||
if self._play_context.verbosity > 3:
|
||||
self._command += ['-vvv']
|
||||
elif binary == 'ssh':
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue