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:
Brian Coca 2016-06-10 13:17:49 -04:00 committed by GitHub
parent ece1ed09d5
commit de18566882
3 changed files with 3 additions and 5 deletions

View file

@ -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':