2011-08-26 06:58:19 +00:00
|
|
|
#
|
2012-02-01 04:37:51 +00:00
|
|
|
# Provides for an easier use of ssh-agent.
|
2011-08-26 06:58:19 +00:00
|
|
|
#
|
2012-02-01 04:37:51 +00: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 06:58:19 +00:00
|
|
|
#
|
2010-09-25 00:46:52 +00:00
|
|
|
|
2012-07-23 19:00:44 +00:00
|
|
|
# Return if requirements are not found.
|
2012-03-09 02:57:00 +00:00
|
|
|
if (( ! $+commands[ssh-agent] )); then
|
2012-03-28 16:19:53 +00:00
|
|
|
return 1
|
2012-03-09 02:57:00 +00:00
|
|
|
fi
|
|
|
|
|
2012-09-30 20:08:27 +00:00
|
|
|
# Load dependencies.
|
|
|
|
pmodload 'helper'
|
|
|
|
|
2012-03-07 17:01:05 +00:00
|
|
|
_ssh_agent_env="${HOME}/.ssh/environment-${HOST}"
|
2011-08-31 03:16:15 +00:00
|
|
|
_ssh_agent_forwarding=
|
2010-09-25 00:46:52 +00:00
|
|
|
|
2012-03-23 18:57:51 +00:00
|
|
|
function _ssh-agent-start {
|
2011-08-26 06:58:19 +00:00
|
|
|
local -a identities
|
|
|
|
|
2012-02-01 04:40:40 +00:00
|
|
|
# Start ssh-agent and setup the environment.
|
2012-02-28 14:00:30 +00:00
|
|
|
rm -f "${_ssh_agent_env}"
|
|
|
|
ssh-agent > "${_ssh_agent_env}"
|
2011-08-31 03:16:15 +00:00
|
|
|
chmod 600 "${_ssh_agent_env}"
|
2012-03-07 23:05:01 +00:00
|
|
|
source "${_ssh_agent_env}" > /dev/null
|
2011-08-26 06:58:19 +00:00
|
|
|
|
2012-03-09 02:54:38 +00:00
|
|
|
# Load identities.
|
2012-09-03 20:08:39 +00:00
|
|
|
zstyle -a ':prezto:module:ssh-agent' identities 'identities'
|
2012-02-28 14:00:30 +00:00
|
|
|
|
2012-03-09 02:55:38 +00:00
|
|
|
if (( ${#identities} > 0 )); then
|
|
|
|
ssh-add "${HOME}/.ssh/${^identities[@]}"
|
2012-02-28 14:00:30 +00:00
|
|
|
else
|
2012-03-09 02:55:38 +00:00
|
|
|
ssh-add
|
2012-02-28 14:00:30 +00:00
|
|
|
fi
|
2010-09-25 00:46:52 +00:00
|
|
|
}
|
|
|
|
|
2011-08-31 03:16:15 +00:00
|
|
|
# Test if agent-forwarding is enabled.
|
2012-09-03 20:08:39 +00:00
|
|
|
zstyle -b ':prezto:module:ssh-agent' forwarding '_ssh_agent_forwarding'
|
2012-01-21 03:03:17 +00:00
|
|
|
if is-true "${_ssh_agent_forwarding}" && [[ -n "$SSH_AUTH_SOCK" ]]; then
|
2011-08-31 03:16:15 +00: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-16 18:21:29 +00:00
|
|
|
elif [[ -s "${_ssh_agent_env}" ]]; then
|
2011-08-31 03:16:15 +00:00
|
|
|
# Source SSH settings, if applicable.
|
2012-03-07 23:05:01 +00:00
|
|
|
source "${_ssh_agent_env}" > /dev/null
|
2012-03-07 17:01:05 +00:00
|
|
|
ps -ef | grep "${SSH_AGENT_PID}" | grep -q 'ssh-agent$' || {
|
2011-08-31 03:16:15 +00:00
|
|
|
_ssh-agent-start;
|
2010-10-01 03:54:45 +00:00
|
|
|
}
|
2010-09-25 00:46:52 +00:00
|
|
|
else
|
2011-08-31 03:16:15 +00:00
|
|
|
_ssh-agent-start;
|
2010-09-25 00:46:52 +00:00
|
|
|
fi
|
|
|
|
|
2011-08-31 03:16:15 +00:00
|
|
|
# Tidy up after ourselves.
|
|
|
|
unfunction _ssh-agent-start
|
2012-04-08 19:04:16 +00:00
|
|
|
unset _ssh_agent_{env,forwarding}
|
2011-08-26 06:58:19 +00:00
|
|
|
|