Contents of /trunk/kdebase-workspace/agent-startup.sh
Parent Directory | Revision Log
Revision 1782 -
(show annotations)
(download)
(as text)
Wed May 16 21:01:54 2012 UTC (12 years, 5 months ago) by niro
File MIME type: application/x-sh
File size: 666 byte(s)
Wed May 16 21:01:54 2012 UTC (12 years, 5 months ago) by niro
File MIME type: application/x-sh
File size: 666 byte(s)
-renamed package
1 | #!/bin/sh |
2 | # $Header: /root/magellan-cvs/src/kdebase4-workspace/agent-startup.sh,v 1.1 2007-12-16 02:29:31 niro Exp $ |
3 | # |
4 | # Agents startup file |
5 | # |
6 | # This file is sourced at kde startup, so that |
7 | # the environment variables set here are available |
8 | # throughout the session. |
9 | |
10 | # Uncomment the following lines to start gpg-agent |
11 | # and/or ssh-agent at kde startup. |
12 | # If you do so, do not forget to uncomment the respective |
13 | # lines in KDEDIR/shutdown/agent-shutdown.sh to |
14 | # properly kill the agents when the session ends. |
15 | |
16 | #if [ -x /usr/bin/gpg-agent ]; then |
17 | # eval "$(/usr/bin/gpg-agent --daemon)" |
18 | #fi |
19 | |
20 | #if [ -x /usr/bin/ssh-agent ]; then |
21 | # eval "$(/usr/bin/ssh-agent -s)" |
22 | #fi |