Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Oh My Zsh
Commits
60b560fc
Commit
60b560fc
authored
Oct 15, 2010
by
Florian Walch
Browse files
Added gpg-agent plugin
Based on ssh-agent plugin.
parent
dc12853b
Changes
1
Hide whitespace changes
Inline
Side-by-side
plugins/gpg-agent/gpg-agent.plugin.zsh
0 → 100644
View file @
60b560fc
# Based on ssh-agent code
local
GPG_ENV
=
$HOME
/.gnupg/gpg-agent.env
function
start_agent
{
/usr/bin/env gpg-agent
--daemon
--enable-ssh-support
--write-env-file
${
GPG_ENV
}
>
/dev/null
chmod
600
${
GPG_ENV
}
.
${
GPG_ENV
}
>
/dev/null
}
# Source GPG agent settings, if applicable
if
[
-f
"
${
GPG_ENV
}
"
]
;
then
.
${
GPG_ENV
}
>
/dev/null
ps
-ef
|
grep
${
SSH_AGENT_PID
}
|
grep
gpg-agent
>
/dev/null
||
{
start_agent
;
}
else
start_agent
;
fi
export
GPG_AGENT_INFO
export
SSH_AUTH_SOCK
export
SSH_AGENT_PID
GPG_TTY
=
$(
tty
)
export
GPG_TTY
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment