#!/sbin/sh
#
# Copyright (c) 1998 by Sun Microsystems, Inc.
# All rights reserved.
#

#
# rscadm initialization script
#

# location of rsc files
rsc_path="/usr/platform/SUNW,UltraSPARC-IIi-Netract/"
rscadm_bin="$rsc_path""rsc/rscadm"


[ ! -d /usr/bin ] && exit

# Start/stop processes required for server NFS

case "$1" in
'start')
	$rscadm_bin date -s
	;;

'stop')
	exit 1
	;;
esac
exit 0
