Added startup of ssh-agent
This commit is contained in:
parent
e935c340fc
commit
6105fbc864
|
@ -17,8 +17,15 @@ else
|
||||||
fi
|
fi
|
||||||
vhost=`echo "$vhost" | cut -d . -f 1`
|
vhost=`echo "$vhost" | cut -d . -f 1`
|
||||||
RECHNER=$vhost
|
RECHNER=$vhost
|
||||||
|
if [ -z "$SSH_AUTH_SOCK" -a -f "$HOME/.ssh/identity" ]
|
||||||
|
then
|
||||||
|
eval `ssh-agent`
|
||||||
|
ssh-add
|
||||||
|
fi
|
||||||
|
|
||||||
if [ -f /etc/oraprofile ]
|
if [ -f /etc/oraprofile ]
|
||||||
then
|
then
|
||||||
. /etc/oraprofile
|
. /etc/oraprofile
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue