Removed (unused) ssh-agent startup.

unset MAILCHECK
set HOME_WWW
This commit is contained in:
hjp 2003-08-10 17:09:17 +00:00
parent 4f9ac8eb39
commit 3c25ddb1bc
3 changed files with 18 additions and 8 deletions

View File

@ -1,3 +1,8 @@
#
# $Id: .zlogin,v 1.9 2003-08-10 17:09:17 hjp Exp $
#
# this is sourced for login shells after .zshrc
#
mesg y mesg y
if [ "`uname`" = "HP-UX" ] if [ "`uname`" = "HP-UX" ]
then then

View File

@ -1,3 +1,8 @@
#
# $Id: .zprofile,v 1.9 2003-08-10 17:09:17 hjp Exp $
#
# this is sourced for login shells after .zshenv but before .zshrc
#
umask 022 umask 022
echo TERM=$TERM echo TERM=$TERM
eval `echo TERM=$TERM` eval `echo TERM=$TERM`
@ -18,17 +23,10 @@ fi
vhost=`echo "$vhost" | cut -d . -f 1` vhost=`echo "$vhost" | cut -d . -f 1`
RECHNER=$vhost RECHNER=$vhost
# I don't understand this any more.
# looks like a nop to me.
if [ -n "" -a -z "$SSH_AUTH_SOCK" -a -f "$HOME/.ssh/identity" ] && tty -s
then
eval `ssh-agent`
ssh-add
fi
if [ -f /etc/oraprofile ] if [ -f /etc/oraprofile ]
then then
. /etc/oraprofile . /etc/oraprofile
fi fi
unset MAILCHECK

View File

@ -252,3 +252,10 @@ then
fi fi
export MAKEFLAGS="-I $HOME/include" export MAKEFLAGS="-I $HOME/include"
if [ -d /usr/local/www ]
then
export HOME_WWW=/usr/local/www
elif [ -d /home/www ]
then
export HOME_WWW=/home/www
fi