#!/bin/sh
#
#       @(#)startup.sh 1.1 92/09/15 SMI
#
# Copyright (c) 1992 by Sun Microsystems, Inc.
#
# run as the 5.0-install root sh
# it sets up the env & runs athenainstall
#

# first thing, source /etc/TIMEZONE, so TZ (and maybe others) set
. /etc/TIMEZONE

SHELL=/bin/sh
export SHELL

PATH=/sbin:/usr/bin:/usr/sbin:/etc:.:$PATH
export PATH

# make home dir to a writeable place
HOME=/tmp
export HOME

trap "" 1 2 15	# ignore traps

if [ ! "$TERM" ]; then
	TERM=sun
	export TERM
fi


athenainstall



