#	Copyright (c) B.M.Goodheart 1989
#	  All Rights Reserved
#
# This script makes a filesystem on the RAMdisk and mounts it as /tmp if
# that hasn't already been done.


#ident	"@(#)S06TMPRAMD	1.1"
state=$1
case $state in

	'start')
		/etc/raminit -i -v
		;;
	'stop')
		/etc/raminit -r
		;;
esac
