#!/bin/sh
case  `hostname` in 

#  add line pairs that have a machine name and a machine type
#  The only supported types are 3100, sun4, sun3, sequent, and mips

#  Many machines can have the same type

	adec3100*)
				echo "3100";;
	another3100*)
				echo "3100";;

#  sun4 includes Sparcstation

	asun4*)
				echo "sun4";;


	asun3*)
				echo "sun3";;

#  Sequent Symmetry 386-based machine

	asequent*)
				echo "sequent";;

#  MIPS Company computers

	mymips*)
				echo "mips";;

#  * can be used for a local default, in this case, sun4

	*)		
				echo "sun4";;
esac
