Trying to get gpg-agent working.

This commit is contained in:
Dustin Swan
2013-06-27 17:27:20 -05:00
parent fb25a6b75d
commit 00a4da6ca1

11
bin/gpg-agent.sh Normal file
View File

@@ -0,0 +1,11 @@
#!/bin/sh
envfile="${HOME}/.gnupg/gpg-agent.env"
if test -f "$envfile" && kill -0 $(grep GPG_AGENT_INFO "$envfile" | cut -d: -f 2) 2>/dev/null; then
eval "$(cat "$envfile")"
else
eval "$(gpg-agent --daemon --write-env-file "$envfile")"
fi
export GPG_AGENT_INFO # the env file does not contain the export statement