2011-06-05 01:07:55 +00:00
|
|
|
#
|
|
|
|
# INSTRUCTIONS
|
|
|
|
#
|
|
|
|
# To enabled agent forwarding support add the following to
|
|
|
|
# your .zshrc file:
|
|
|
|
#
|
|
|
|
# zstyle :omz:plugins:ssh-agent agent-forwarding on
|
|
|
|
#
|
2011-06-05 02:16:10 +00:00
|
|
|
# To load multiple identies use the identities style, For
|
|
|
|
# example:
|
|
|
|
#
|
|
|
|
# zstyle :omz:plugins:ssh-agent id_rsa id_rsa2 id_github
|
|
|
|
#
|
2011-06-05 01:07:55 +00:00
|
|
|
#
|
|
|
|
# CREDITS
|
|
|
|
#
|
|
|
|
# Based on code from Joseph M. Reagle
|
|
|
|
# http://www.cygwin.com/ml/cygwin/2001-06/msg00537.html
|
|
|
|
#
|
|
|
|
# Agent forwarding support based on ideas from
|
|
|
|
# Florent Thoumie and Jonas Pfenniger
|
|
|
|
#
|
2010-09-25 00:46:52 +00:00
|
|
|
|
2011-06-05 01:07:55 +00:00
|
|
|
local _plugin__ssh_env=$HOME/.ssh/environment-$HOST
|
|
|
|
local _plugin__forwarding
|
2010-09-25 00:46:52 +00:00
|
|
|
|
2011-06-05 01:07:55 +00:00
|
|
|
function _plugin__start_agent()
|
|
|
|
{
|
2011-06-05 02:16:10 +00:00
|
|
|
local -a identities
|
|
|
|
|
|
|
|
# start ssh-agent and setup environment
|
2011-06-05 01:07:55 +00:00
|
|
|
/usr/bin/env ssh-agent | sed 's/^echo/#echo/' > ${_plugin__ssh_env}
|
|
|
|
chmod 600 ${_plugin__ssh_env}
|
|
|
|
. ${_plugin__ssh_env} > /dev/null
|
2011-06-05 02:16:10 +00:00
|
|
|
|
|
|
|
# load identies
|
|
|
|
zstyle -a :omz:plugins:ssh-agent identities identities
|
|
|
|
echo starting...
|
|
|
|
/usr/bin/ssh-add $HOME/.ssh/${^identities}
|
2010-09-25 00:46:52 +00:00
|
|
|
}
|
|
|
|
|
2011-06-05 01:07:55 +00:00
|
|
|
# test if agent-forwarding is enabled
|
|
|
|
zstyle -b :omz:plugins:ssh-agent agent-forwarding _plugin__forwarding
|
2011-06-05 02:16:10 +00:00
|
|
|
if [[ ${_plugin__forwarding} == "yes" && -n "$SSH_AUTH_SOCK" ]]; then
|
|
|
|
# Add a nifty symlink for screen/tmux if agent forwarding
|
2011-06-05 01:07:55 +00:00
|
|
|
[[ -L $SSH_AUTH_SOCK ]] || ln -sf "$SSH_AUTH_SOCK" /tmp/ssh-agent-$USER-screen
|
2010-09-25 00:46:52 +00:00
|
|
|
|
2011-06-05 01:07:55 +00:00
|
|
|
elif [ -f "${_plugin__ssh_env}" ]; then
|
|
|
|
# Source SSH settings, if applicable
|
|
|
|
. ${_plugin__ssh_env} > /dev/null
|
2010-10-01 03:54:45 +00:00
|
|
|
ps -ef | grep ${SSH_AGENT_PID} | grep ssh-agent$ > /dev/null || {
|
2011-06-05 01:07:55 +00:00
|
|
|
_plugin__start_agent;
|
2010-10-01 03:54:45 +00:00
|
|
|
}
|
2010-09-25 00:46:52 +00:00
|
|
|
else
|
2011-06-05 01:07:55 +00:00
|
|
|
_plugin__start_agent;
|
2010-09-25 00:46:52 +00:00
|
|
|
fi
|
|
|
|
|
2011-06-05 01:07:55 +00:00
|
|
|
# tidy up after ourselves
|
|
|
|
unfunction _plugin__start_agent
|
|
|
|
unset _plugin__forwarding
|
|
|
|
unset _plugin__ssh_env
|
|
|
|
|