This repository has been archived on 2022-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
prezto/modules/ssh-agent/init.zsh

69 lines
1.8 KiB
Bash
Raw Normal View History

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