Doug Barton

GPG Agent Startup Script

Link to the script file
#!/bin/sh

# Place the following in your ~/.xsession or ~/.xinitrc file:
# (Remove the ssh bits if you will not be using that feature.)
#
# unset GPG_AGENT_INFO SSH_AUTH_SOCK SSH_AGENT_PID
# ${HOME}/.bin/gpg-agent.sh
# if [ -r "${HOME}/.gpg-agent-info" ]; then
#	. ${HOME}/.gpg-agent-info
#	export GPG_AGENT_INFO SSH_AUTH_SOCK SSH_AGENT_PID
# fi

PATH=/bin:/usr/bin:/usr/local/bin
export PATH

[ -e "${HOME}/.gpg-agent-info" ] && unlink ${HOME}/.gpg-agent-info

killall -0 gpg-agent 2>/dev/null
if [ $? -eq 0 ]; then
	killall gpg-agent
	sleep 1
	killall -0 gpg-agent 2>/dev/null && killall -9 gpg-agent
fi

[ "$1" = "stop" ] && exit 0

eval `gpg-agent --enable-ssh-support --daemon --write-env-file`

exit 0

# Copyright (c) 2009-2010 Douglas Barton
# All rights reserved.

# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the distribution.
# 
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.

# $Id: gpg-agent.sh,v 1.3 2010/08/11 18:16:19 dougb Exp $