diff options
author | Dan Armak <danarmak@gentoo.org> | 2005-01-17 09:02:57 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2005-01-17 09:02:57 +0000 |
commit | 1d172e4aa310ed85bdd63cc31a145c9c9f5ec8fe (patch) | |
tree | f0e70b263f2610fda2205a354751691402469a93 /kde-base/kdebase-startkde/files | |
parent | new ebuild deriving from kdeaccessibility; a panel applet that displays the k... (diff) | |
download | gentoo-2-1d172e4aa310ed85bdd63cc31a145c9c9f5ec8fe.tar.gz gentoo-2-1d172e4aa310ed85bdd63cc31a145c9c9f5ec8fe.tar.bz2 gentoo-2-1d172e4aa310ed85bdd63cc31a145c9c9f5ec8fe.zip |
import greg's kdebase/files/agent-startup.sh rev 1.3: fix multiple typos in comments
(Portage version: 2.0.51-r12)
Diffstat (limited to 'kde-base/kdebase-startkde/files')
-rw-r--r-- | kde-base/kdebase-startkde/files/agent-startup.sh | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/kde-base/kdebase-startkde/files/agent-startup.sh b/kde-base/kdebase-startkde/files/agent-startup.sh index bf788b003549..6b7be61a9904 100644 --- a/kde-base/kdebase-startkde/files/agent-startup.sh +++ b/kde-base/kdebase-startkde/files/agent-startup.sh @@ -1,7 +1,15 @@ -#!/bin/sh -# -# Customized agents startup file +# Agents startup file # +# This file is sourced at kde startup, so that +# the environment variables set here are available +# throughout the session. + +# Uncomment the following lines to start gpg-agent +# and/or ssh-agent at kde startup. +# If you do so, do not forget to uncomment the respective +# lines in KDEDIR/shutdown/agent-shutdown.sh to +# properly kill the agents when the session ends. + #if [ -x /usr/bin/gpg-agent ]; then # eval "$(/usr/bin/gpg-agent --daemon)" #fi @@ -9,5 +17,3 @@ #if [ -x /usr/bin/ssh-agent ]; then # eval "$(/usr/bin/ssh-agent -s)" #fi -# - |