# /etc/profile Mon Feb 21 10:49:51 1994 CST
# Executed at login for all users.
umask 022
export VIEWER="/usr/bin/more -ls"
export PAGER="exec $VIEWER"
export PATH=/bin:/usr/bin
export TERM=`ttytype`
export LOGNAME=$USER
export HZ=100
. /etc/timezone

# ksh is the only shell that pays attention to ENV
export ENV=/etc/.kshrc

# Display site news, e.g.
# The check on $HOME is to prevent motd from showing on going single user.
if [ "$HOME" != /etc ]; then
	if [ -s /etc/motd ]; then
		$VIEWER /etc/motd
	fi
	if [ -f /usr/games/almanac ];then
		echo "
Today's almanac:
(Edit /etc/profile if you don't want almanac info at login.)
"
		/usr/games/almanac
	fi
fi
