From 60427ab3d26bbe5a5ab00c4e7b550f111b4f72e5 Mon Sep 17 00:00:00 2001 From: baude Date: Fri, 22 Jun 2018 08:15:37 -0500 Subject: add podman remote client podman client that is capable of: * images * ps * rm * rmi this is only a mockup to frame out and prove python library and ssh tunnelling usage. Signed-off-by: baude Closes: #986 Approved by: rhatdan --- contrib/python/podman/libs/tunnel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'contrib/python/podman/libs') diff --git a/contrib/python/podman/libs/tunnel.py b/contrib/python/podman/libs/tunnel.py index 534326ff0..42fd3356b 100644 --- a/contrib/python/podman/libs/tunnel.py +++ b/contrib/python/podman/libs/tunnel.py @@ -98,7 +98,7 @@ class Tunnel(object): """Create SSH tunnel from given context.""" cmd = [ 'ssh', - '-nNT', + '-nNTq', '-L', '{}:{}'.format(self.context.local_socket, self.context.remote_socket), -- cgit v1.2.3-54-g00ecf