#
# /.profile script from the Anonymizing Unix Project
# by van Hauser / THC <vh@reptile.rug.ac.be>
#
if [ -x /usr/bin/fortune ]; then
    /usr/bin/fortune -o
fi
echo
echo

#
# Attach the user's CFS homedir. Exit if this fails.
# Note that users can't log on if something's wrong ! (remove || exit 0 to change that)
PATH=$PATH:/bin:/usr/bin:/usr/local/bin
cattach /crypt/$USER $USER  ||  exit 0

#
# Setting some important variables
HOME=/home/$USER
export HOME
TMPDIR=$HOME/tmp
export TMPDIR
PATH=$PATH:$HOME/bin:/usr/local/bin
export PATH
alias rm=srm

#
# Now we proceed with the normal logon process
cd $HOME
if [ -e $HOME/.profile ]; then
    . $HOME/.profile
fi

# done.
