2011-08-26 14:58:19 +08:00
|
|
|
#
|
2012-02-01 12:37:51 +08:00
|
|
|
# Provides for an easier use of ssh-agent.
|
2011-08-26 14:58:19 +08:00
|
|
|
#
|
2012-02-01 12:37:51 +08:00
|
|
|
# Authors:
|
|
|
|
# Robby Russell <robby@planetargon.com>
|
|
|
|
# Theodore Robert Campbell Jr <trcjr@stupidfoot.com>
|
|
|
|
# Joseph M. Reagle Jr. <reagle@mit.edu>
|
|
|
|
# Florent Thoumie <flz@xbsd.org>
|
|
|
|
# Jonas Pfenniger <jonas@pfenniger.name>
|
|
|
|
# gwjo <gowen72@gmail.com>
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
2011-08-26 14:58:19 +08:00
|
|
|
#
|
2010-09-25 08:46:52 +08:00
|
|
|
|
2012-07-24 03:00:44 +08:00
|
|
|
# Return if requirements are not found.
|
2012-03-09 10:57:00 +08:00
|
|
|
if (( ! $+commands[ssh-agent] )); then
|
2012-03-29 00:19:53 +08:00
|
|
|
return 1
|
2012-03-09 10:57:00 +08:00
|
|
|
fi
|
|
|
|
|
2012-10-01 04:08:27 +08:00
|
|
|
# Load dependencies.
|
|
|
|
pmodload 'helper'
|
|
|
|
|
2012-03-08 01:01:05 +08:00
|
|
|
_ssh_agent_env="${HOME}/.ssh/environment-${HOST}"
|
2011-08-31 11:16:15 +08:00
|
|
|
_ssh_agent_forwarding=
|
2010-09-25 08:46:52 +08:00
|
|
|
|
2012-03-24 02:57:51 +08:00
|
|
|
function _ssh-agent-start {
|
2011-08-26 14:58:19 +08:00
|
|
|
local -a identities
|
|
|
|
|
2012-02-01 12:40:40 +08:00
|
|
|
# Start ssh-agent and setup the environment.
|
2012-02-28 22:00:30 +08:00
|
|
|
rm -f "${_ssh_agent_env}"
|
|
|
|
ssh-agent > "${_ssh_agent_env}"
|
2011-08-31 11:16:15 +08:00
|
|
|
chmod 600 "${_ssh_agent_env}"
|
2012-03-08 07:05:01 +08:00
|
|
|
source "${_ssh_agent_env}" > /dev/null
|
2011-08-26 14:58:19 +08:00
|
|
|
|
2012-03-09 10:54:38 +08:00
|
|
|
# Load identities.
|
2012-09-04 04:08:39 +08:00
|
|
|
zstyle -a ':prezto:module:ssh-agent' identities 'identities'
|
2012-02-28 22:00:30 +08:00
|
|
|
|
2012-03-09 10:55:38 +08:00
|
|
|
if (( ${#identities} > 0 )); then
|
|
|
|
ssh-add "${HOME}/.ssh/${^identities[@]}"
|
2012-02-28 22:00:30 +08:00
|
|
|
else
|
2012-03-09 10:55:38 +08:00
|
|
|
ssh-add
|
2012-02-28 22:00:30 +08:00
|
|
|
fi
|
2010-09-25 08:46:52 +08:00
|
|
|
}
|
|
|
|
|
2011-08-31 11:16:15 +08:00
|
|
|
# Test if agent-forwarding is enabled.
|
2012-09-04 04:08:39 +08:00
|
|
|
zstyle -b ':prezto:module:ssh-agent' forwarding '_ssh_agent_forwarding'
|
2012-01-21 11:03:17 +08:00
|
|
|
if is-true "${_ssh_agent_forwarding}" && [[ -n "$SSH_AUTH_SOCK" ]]; then
|
2011-08-31 11:16:15 +08:00
|
|
|
# Add a nifty symlink for screen/tmux if agent forwarding.
|
|
|
|
[[ -L "$SSH_AUTH_SOCK" ]] || ln -sf "$SSH_AUTH_SOCK" /tmp/ssh-agent-$USER-screen
|
2012-04-17 02:21:29 +08:00
|
|
|
elif [[ -s "${_ssh_agent_env}" ]]; then
|
2011-08-31 11:16:15 +08:00
|
|
|
# Source SSH settings, if applicable.
|
2012-03-08 07:05:01 +08:00
|
|
|
source "${_ssh_agent_env}" > /dev/null
|
2012-03-08 01:01:05 +08:00
|
|
|
ps -ef | grep "${SSH_AGENT_PID}" | grep -q 'ssh-agent$' || {
|
2011-08-31 11:16:15 +08:00
|
|
|
_ssh-agent-start;
|
2010-10-01 11:54:45 +08:00
|
|
|
}
|
2010-09-25 08:46:52 +08:00
|
|
|
else
|
2011-08-31 11:16:15 +08:00
|
|
|
_ssh-agent-start;
|
2010-09-25 08:46:52 +08:00
|
|
|
fi
|
|
|
|
|
2011-08-31 11:16:15 +08:00
|
|
|
# Tidy up after ourselves.
|
|
|
|
unfunction _ssh-agent-start
|
2012-04-09 03:04:16 +08:00
|
|
|
unset _ssh_agent_{env,forwarding}
|
2011-08-26 14:58:19 +08:00
|
|
|
|