#
# .login	-- Commands executed only by a login C-shell
#
#	@(#) login 5.1 89/08/09 
#
# Copyright (c) 1985-89, The Santa Cruz Operation, Inc.
# All rights reserved.
#
# This Module contains Proprietary Information of the Santa Cruz
# Operation, Inc., and should be treated as Confidential. 
#

setenv SHELL /bin/csh
umask 000
set ignoreeof				# don't let control-d logout
set path = ($path $home/bin .)	# execution search path

set noglob
set aa = `tty`
if ( "$aa" == "/dev/tty1a" ) then
	echo tvi920
	setenv TERM "tvi920"
else if ( "$aa" == "/dev/tty2a" ) then
	echo tvi920
	setenv TERM "tvi920"
else set term = (`tset -m ansi:ansi -m :\?ansi -r -S -Q`)
	if ( $status == 0 ) then
		setenv TERM "$term"
	endif
endif
unset term noglob
auto
