ssh-agent.plugin.zsh 1.6 KB
Newer Older
gwjo's avatar
gwjo committed
1
2
3
4
5
6
7
8
#
# INSTRUCTIONS
#
#   To enabled agent forwarding support add the following to
#   your .zshrc file:
#
#     zstyle :omz:plugins:ssh-agent agent-forwarding on
#
9
10
11
12
13
#   To load multiple identies use the identities style, For
#   example:
#
#     zstyle :omz:plugins:ssh-agent id_rsa id_rsa2 id_github
#
gwjo's avatar
gwjo committed
14
15
16
17
18
19
20
21
22
#
# 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
#
gwjo's avatar
gwjo committed
23

gwjo's avatar
gwjo committed
24
25
local _plugin__ssh_env=$HOME/.ssh/environment-$HOST
local _plugin__forwarding
gwjo's avatar
gwjo committed
26

gwjo's avatar
gwjo committed
27
28
function _plugin__start_agent()
{
29
30
31
  local -a identities

  # start ssh-agent and setup environment
gwjo's avatar
gwjo committed
32
33
34
  /usr/bin/env ssh-agent | sed 's/^echo/#echo/' > ${_plugin__ssh_env}
  chmod 600 ${_plugin__ssh_env}
  . ${_plugin__ssh_env} > /dev/null
35
36
37
38
39

  # load identies
  zstyle -a :omz:plugins:ssh-agent identities identities 
  echo starting...
  /usr/bin/ssh-add $HOME/.ssh/${^identities}
gwjo's avatar
gwjo committed
40
41
}

gwjo's avatar
gwjo committed
42
43
# test if agent-forwarding is enabled
zstyle -b :omz:plugins:ssh-agent agent-forwarding _plugin__forwarding
44
45
if [[ ${_plugin__forwarding} == "yes" && -n "$SSH_AUTH_SOCK" ]]; then
  # Add a nifty symlink for screen/tmux if agent forwarding
gwjo's avatar
gwjo committed
46
  [[ -L $SSH_AUTH_SOCK ]] || ln -sf "$SSH_AUTH_SOCK" /tmp/ssh-agent-$USER-screen
gwjo's avatar
gwjo committed
47

gwjo's avatar
gwjo committed
48
49
50
elif [ -f "${_plugin__ssh_env}" ]; then
  # Source SSH settings, if applicable
  . ${_plugin__ssh_env} > /dev/null
51
  ps -x | grep ${SSH_AGENT_PID} | grep ssh-agent > /dev/null || {
gwjo's avatar
gwjo committed
52
    _plugin__start_agent;
53
  }
gwjo's avatar
gwjo committed
54
else
gwjo's avatar
gwjo committed
55
  _plugin__start_agent;
gwjo's avatar
gwjo committed
56
57
fi

gwjo's avatar
gwjo committed
58
59
60
61
62
# tidy up after ourselves
unfunction _plugin__start_agent
unset _plugin__forwarding
unset _plugin__ssh_env