#!/bin/sh
#ident	"@(#)sunbaseserv	97/04/15 SMI"	/* SVr4.0 1.6	*/

##########
#
# The first argument tells what to do.
##########

state=$1

set `who -r`
case $state in

'start')
	su - ionogram -c "/usr/local/bin/baseserv; exit"
	su - ionogram -c "/usr/local/bin/polanserv; exit"
	su - ionogram -c "/usr/local/bin/mariaserv; exit"
	exit
	;;
'stop')
	;;
esac
