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