From: Chris Koeritz Date: Sat, 2 Jun 2012 21:43:41 +0000 (-0400) Subject: nice, gets the gpg-agent running so my passwords will be remembered during my X-Git-Tag: 2.140.90~1327 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=c172a816a820279291b2775198f2c8de5f0d4c5b;hp=54c5376449d8620ce9ec3fa45b09509005f22393;p=feisty_meow.git nice, gets the gpg-agent running so my passwords will be remembered during my login sessions. --- diff --git a/examples/custom_overrides/fred/gpg-daemon-launcher.sh b/examples/custom_overrides/fred/gpg-daemon-launcher.sh new file mode 100644 index 00000000..c7585285 --- /dev/null +++ b/examples/custom_overrides/fred/gpg-daemon-launcher.sh @@ -0,0 +1,19 @@ +#!/bin/bash +############## +# Name : gpg-daemon-launcher +# Author : Chris Koeritz +# Rights : Copyright (C) 2012-$now by Feisty Meow Concerns, Ltd. +############## +# This script is free software; you can modify/redistribute it under the terms +# of the GNU General Public License. [ http://www.gnu.org/licenses/gpl.html ] +# Feel free to send updates to: [ fred@gruntose.com ] +############## + +# starts up the gpg-agent, but only if it's not already running. + +if [ -z "$(psa gpg-agent)" ]; then + gpg-agent --daemon --enable-ssh-support --write-env-file "${HOME}/.gpg-agent-info" &>$TMP/zz_gpg-agent-daemon.log +fi + + +