You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
629 B
Plaintext
25 lines
629 B
Plaintext
2 years ago
|
# $Id: 90x11-common_ssh-agent 305 2005-07-03 18:51:43Z dnusinow $
|
||
|
|
||
|
# This file is sourced by Xsession(5), not executed.
|
||
|
|
||
|
STARTSSH=
|
||
|
SSHAGENT=/usr/bin/ssh-agent
|
||
|
SSHAGENTARGS=
|
||
|
|
||
|
if has_option use-ssh-agent; then
|
||
|
if [ -x "$SSHAGENT" ] && [ -z "$SSH_AUTH_SOCK" ] \
|
||
|
&& [ -z "$SSH2_AUTH_SOCK" ]; then
|
||
|
STARTSSH=yes
|
||
|
if [ -f /usr/bin/ssh-add1 ] && cmp -s $SSHAGENT /usr/bin/ssh-agent2; then
|
||
|
# use ssh-agent2's ssh-agent1 compatibility mode
|
||
|
SSHAGENTARGS=-1
|
||
|
fi
|
||
|
fi
|
||
|
fi
|
||
|
|
||
|
if [ -n "$STARTSSH" ]; then
|
||
|
STARTUP="$SSHAGENT $SSHAGENTARGS ${TMPDIR:+env TMPDIR=$TMPDIR} $STARTUP"
|
||
|
fi
|
||
|
|
||
|
# vim:set ai et sts=2 sw=2 tw=80:
|