diff options
author | 2005-02-07 19:03:35 +0000 | |
---|---|---|
committer | 2005-02-07 19:03:35 +0000 | |
commit | ec9f9891fd733b5d02ad2b10b3c4756388d3213c (patch) | |
tree | 1fd99d17a7139b0fe163f18bb8bd9a15cd5db82d /kde-base | |
parent | Get rid of some old ebuilds to make my life my sane and fix bug #80321 while ... (diff) | |
download | historical-ec9f9891fd733b5d02ad2b10b3c4756388d3213c.tar.gz historical-ec9f9891fd733b5d02ad2b10b3c4756388d3213c.tar.bz2 historical-ec9f9891fd733b5d02ad2b10b3c4756388d3213c.zip |
Cosmetic changes, not affecting functionality.
Diffstat (limited to 'kde-base')
-rw-r--r-- | kde-base/kdebase/files/agent-shutdown.sh | 8 | ||||
-rw-r--r-- | kde-base/kdebase/files/agent-startup.sh | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/kde-base/kdebase/files/agent-shutdown.sh b/kde-base/kdebase/files/agent-shutdown.sh index 35c04a074d2b..479f3f7bfc18 100644 --- a/kde-base/kdebase/files/agent-shutdown.sh +++ b/kde-base/kdebase/files/agent-shutdown.sh @@ -4,10 +4,10 @@ # Uncomment the following lines to kill the agents # that were started at session startup. -#if [ "${GPG_AGENT_INFO}" ]; then +#if [ -n "${GPG_AGENT_INFO}" ]; then # kill $(echo ${GPG_AGENT_INFO} | cut -d':' -f 2) >/dev/null 2>&1 #fi -# -#if [ "${SSH_AGENT_PID}" ]; then -# ssh-agent -k + +#if [ -n "${SSH_AGENT_PID}" ]; then +# eval "$(ssh-agent -k)" #fi diff --git a/kde-base/kdebase/files/agent-startup.sh b/kde-base/kdebase/files/agent-startup.sh index 6b7be61a9904..768de9b24f39 100644 --- a/kde-base/kdebase/files/agent-startup.sh +++ b/kde-base/kdebase/files/agent-startup.sh @@ -13,7 +13,7 @@ #if [ -x /usr/bin/gpg-agent ]; then # eval "$(/usr/bin/gpg-agent --daemon)" #fi -# + #if [ -x /usr/bin/ssh-agent ]; then # eval "$(/usr/bin/ssh-agent -s)" #fi |