#!/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

	bugs-bunny*)	echo "3100";;
	hermes*)	echo "sequent";;
	postgres*)	echo "sun3";;
	*)		echo "sun4";;
esac
