X-Git-Url: https://src.twobees.de/?a=blobdiff_plain;f=stow%2Foh-my-zsh%2F.oh-my-zsh%2Fplugins%2Fshell-proxy%2Fssh-agent.py;fp=stow%2Foh-my-zsh%2F.oh-my-zsh%2Fplugins%2Fshell-proxy%2Fssh-agent.py;h=0000000000000000000000000000000000000000;hb=1a8e170bbe5c6641a26ab1ce2e6ce6c5c1faa4cd;hp=4ee24b7551009edb173ee49098eb67f734afb82e;hpb=475ba35502579302593f4735c853c49ef1845dcb;p=dotfiles.git diff --git a/stow/oh-my-zsh/.oh-my-zsh/plugins/shell-proxy/ssh-agent.py b/stow/oh-my-zsh/.oh-my-zsh/plugins/shell-proxy/ssh-agent.py deleted file mode 100755 index 4ee24b7..0000000 --- a/stow/oh-my-zsh/.oh-my-zsh/plugins/shell-proxy/ssh-agent.py +++ /dev/null @@ -1,16 +0,0 @@ -#!/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)