You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
338 B
16 lines
338 B
#!/usr/bin/env python3 |
|
import os |
|
import subprocess |
|
import sys |
|
|
|
ssh_proxy = os.path.join(os.path.dirname(__file__), "ssh-proxy.py") |
|
|
|
argv = [ |
|
os.environ.get("__SSH_PROGRAM_NAME__", "ssh"), |
|
"-o", |
|
"ProxyCommand={} %h %p".format(ssh_proxy), |
|
"-o", |
|
"Compression=yes", |
|
] |
|
|
|
subprocess.call(argv + sys.argv[1:], env=os.environ)
|
|
|