forked from sorin-ionescu/prezto
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Fix sorin-ionescu#419] Rewrite module gpg-agent; rename it to gpg
- Loading branch information
1 parent
4617941
commit 57bfe45
Showing
6 changed files
with
49 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
GPG | ||
=== | ||
|
||
Provides for an easier use of [GPG][1] by setting up [gpg-agent][2]. | ||
|
||
Authors | ||
------- | ||
|
||
*The authors of this module should be contacted via the [issue tracker][3].* | ||
|
||
- [Sorin Ionescu](https://github.com/sorin-ionescu) | ||
|
||
[1]: http://www.gnupg.org | ||
[2]: http://linux.die.net/man/1/gpg-agent | ||
[3]: https://github.com/sorin-ionescu/prezto/issues | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# | ||
# Provides for an easier use of GPG by setting up gpg-agent. | ||
# | ||
# Authors: | ||
# Sorin Ionescu <[email protected]> | ||
# | ||
|
||
# Return if requirements are not found. | ||
if (( ! $+commands[gpg-agent] )); then | ||
return 1 | ||
fi | ||
|
||
# Set the default path to the gpg-agent-info file. | ||
_gpg_agent_info="$HOME/.gpg-agent-info" | ||
|
||
# Start gpg-agent if not started. | ||
ps -U "$USER" -o ucomm | grep -q gpg-agent \ | ||
|| gpg-agent --daemon >! "$_gpg_agent_info" | ||
|
||
# Export environment variables. | ||
export GPG_TTY="$(tty)" | ||
source "$_gpg_agent_info" | ||
|
||
# Clean up. | ||
unset _gpg_agent_info | ||
|
||
# Disable GUI prompts inside SSH. | ||
if [[ -n "$SSH_CONNECTION" ]]; then | ||
export PINENTRY_USER_DATA='USE_CURSES=1' | ||
fi | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters