summaryrefslogtreecommitdiff
path: root/contrib/python/podman/libs
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2018-06-22 08:15:37 -0500
committerAtomic Bot <atomic-devel@projectatomic.io>2018-06-27 04:52:22 +0000
commit60427ab3d26bbe5a5ab00c4e7b550f111b4f72e5 (patch)
tree64f11dab9bcdc426956160b6b56ee536bb3aa6e8 /contrib/python/podman/libs
parent56133f7263337e9b2c9cfb1cfce35adc2366f52b (diff)
downloadpodman-60427ab3d26bbe5a5ab00c4e7b550f111b4f72e5.tar.gz
podman-60427ab3d26bbe5a5ab00c4e7b550f111b4f72e5.tar.bz2
podman-60427ab3d26bbe5a5ab00c4e7b550f111b4f72e5.zip
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 <bbaude@redhat.com> Closes: #986 Approved by: rhatdan
Diffstat (limited to 'contrib/python/podman/libs')
-rw-r--r--contrib/python/podman/libs/tunnel.py2
1 files changed, 1 insertions, 1 deletions
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),