diff options
Diffstat (limited to '')
-rw-r--r-- | bashrc/common/ssh-agent-forwarding.sh | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/bashrc/common/ssh-agent-forwarding.sh b/bashrc/common/ssh-agent-forwarding.sh index 4691578..b18ef75 100644 --- a/bashrc/common/ssh-agent-forwarding.sh +++ b/bashrc/common/ssh-agent-forwarding.sh @@ -19,7 +19,5 @@ if [ -n "$SSH_AUTH_SOCK" -a -n "$SSH_CLIENT" ]; then fi -if [ -z "$SSH_AUTH_SOCK" -a -r "${HOME}/.ssh-agent-forwarding" ]; then - SSH_AUTH_SOCK=$(tail -n 1 "${HOME}/.ssh-agent-forwarding" | cut -d" " -f2) - export SSH_AUTH_SOCK -fi +SSH_AUTH_SOCK="${HOME}/.ssh-agent-forwarded-sock" +export SSH_AUTH_SOCK |