remove -N

This commit is contained in:
Ryan Mukherjee 2023-06-21 11:32:42 -04:00 committed by GitHub
parent 78ea4bf4f0
commit 22ae1daaae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -669,7 +669,7 @@ def wait_for_machine(state, task):
def start_ssh_tunnel(username, remote_address, ssh_port, ssh_password, local_remote_pair_list, debug=False):
print('Starting SSH tunnel')
child = None
args = ['-N', '-C',
args = ['-C',
'{}@{}'.format(username, remote_address), '-p', '{}'.format(ssh_port),
'-o', 'UserKnownHostsFile=/dev/null',
'-o', 'Compression=yes',