2011-06-05 01:07:55 +00:00
|
|
|
#
|
|
|
|
# INSTRUCTIONS
|
|
|
|
#
|
2014-05-24 06:31:59 +00:00
|
|
|
# To enable agent forwarding support add the following to
|
2011-06-05 01:07:55 +00:00
|
|
|
# your .zshrc file:
|
|
|
|
#
|
|
|
|
# zstyle :omz:plugins:ssh-agent agent-forwarding on
|
|
|
|
#
|
2013-03-16 04:06:46 +00:00
|
|
|
# To load multiple identities use the identities style, For
|
2011-06-05 02:16:10 +00:00
|
|
|
# example:
|
|
|
|
#
|
2013-07-16 15:10:47 +00:00
|
|
|
# zstyle :omz:plugins:ssh-agent identities id_rsa id_rsa2 id_github
|
2011-06-05 02:16:10 +00:00
|
|
|
#
|
2013-03-16 04:06:46 +00:00
|
|
|
# To set the maximum lifetime of the identities, use the
|
|
|
|
# lifetime style. The lifetime may be specified in seconds
|
|
|
|
# or as described in sshd_config(5) (see TIME FORMATS)
|
|
|
|
# If left unspecified, the default lifetime is forever.
|
|
|
|
#
|
|
|
|
# zstyle :omz:plugins:ssh-agent lifetime 4h
|
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
|
|
|
|
2014-03-13 18:44:58 +00:00
|
|
|
local _plugin__ssh_env
|
2011-06-05 01:07:55 +00:00
|
|
|
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
|
2013-03-16 04:06:46 +00:00
|
|
|
local lifetime
|
|
|
|
zstyle -s :omz:plugins:ssh-agent lifetime lifetime
|
2011-06-05 02:16:10 +00:00
|
|
|
|
|
|
|
# start ssh-agent and setup environment
|
2013-03-16 04:06:46 +00:00
|
|
|
/usr/bin/env ssh-agent ${lifetime:+-t} ${lifetime} | sed 's/^echo/#echo/' > ${_plugin__ssh_env}
|
2011-06-05 01:07:55 +00:00
|
|
|
chmod 600 ${_plugin__ssh_env}
|
|
|
|
. ${_plugin__ssh_env} > /dev/null
|
2011-06-05 02:16:10 +00:00
|
|
|
|
|
|
|
# load identies
|
2014-03-13 18:44:58 +00:00
|
|
|
zstyle -a :omz:plugins:ssh-agent identities identities
|
2013-03-16 04:06:46 +00:00
|
|
|
echo starting ssh-agent...
|
|
|
|
|
2011-06-05 02:16:10 +00:00
|
|
|
/usr/bin/ssh-add $HOME/.ssh/${^identities}
|
2010-09-25 00:46:52 +00:00
|
|
|
}
|
|
|
|
|
2014-03-13 18:44:58 +00:00
|
|
|
# Get the filename to store/lookup the environment from
|
|
|
|
if (( $+commands[scutil] )); then
|
|
|
|
# It's OS X!
|
|
|
|
_plugin__ssh_env="$HOME/.ssh/environment-$(scutil --get ComputerName)"
|
|
|
|
else
|
|
|
|
_plugin__ssh_env="$HOME/.ssh/environment-$HOST"
|
|
|
|
fi
|
|
|
|
|
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
|
2013-11-04 23:40:13 +00:00
|
|
|
ps x | 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
|
|
|
|
|