#ident	"@(#)sadmin:etc/profile	35.1"
#	The profile that all logins get before using their own .profile.

trap ""  2 3

MMU=M68851
PROCESSOR=M68020
STACKCHECK=OFF
SYSTEM=VME131
FPU=M68881
OPTIM=BOTH
DBLALIGN=NO
STALIGN=NO
FP=

PATH=$PATH:/local/bin

export MMU PROCESSOR STACKCHECK SYSTEM OPTIM DBLALIGN FPU STALIGN FP
export LOGNAME TERM

. /etc/TIMEZONE

#	Login and -su shells get /etc/profile services.
#	-rsh is given its environment in its .profile.
case "$0" in
-su )
	export PATH
	;;
-sh )
	export PATH

	#	Allow the user to break the Message-Of-The-Day only.
	trap "trap '' 2"  2
	cat -s /etc/motd
	trap "" 2

	if mail -e
	then
		echo "you have mail"
	fi

	if [ ${LOGNAME} != root ]
	then
		news -n
	fi
	;;
esac

umask 022
trap  2 3

TERM=vt100 ; export TERM
CERASE=""
stty erase ""
