#!/bin/sh
#
. /opt/HAC/bin/rsf.sh

service=${RSF_SERVICE:-"service_name"}
script="`basename $0`"

case "${1}" in

'start')
	rc_exit ${service} ${RSF_OK}
	;;

'stop')
	notify_watchers "${LOG_INFO}" "RSF_SERVICE_SHUTDOWN" "service=${service} resource=NONE status=OK"
	rc_exit ${service} ${RSF_OK}
	;;

'check')
	exit ${RSF_CHECK_NORESRC}
	;;

*)
	rc_exit ${service} ${RSF_WARN} "usage: $0 <start|stop|check>"
	;;

esac
