From: Chris Koeritz Date: Sat, 16 Jun 2012 20:57:45 +0000 (-0400) Subject: dropping this, since it does not seem to help at all. X-Git-Tag: 2.140.90~1314 X-Git-Url: https://feistymeow.org/gitweb/?p=feisty_meow.git;a=commitdiff_plain;h=c6af19e5056a2aee658f6a2b8b3f9c309f0c0f97 dropping this, since it does not seem to help at all. --- diff --git a/examples/custom_overrides/fred/gpg-daemon-launcher.sh b/examples/custom_overrides/fred/gpg-daemon-launcher.sh deleted file mode 100644 index 89054055..00000000 --- a/examples/custom_overrides/fred/gpg-daemon-launcher.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/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. - -source "$FEISTY_MEOW_SCRIPTS/core/functions.sh" - -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 - - -