#!/bin/sh
########################################################################
# Begin scriptname
#
# Description :
#
# Authors     :
#
# Version     : 0.0
#
# Notes       :
#
########################################################################

. /lib/boot/functions

case "${1}" in
   start)
      boot_mesg "Starting..."
      loadproc
      ;;

   stop)
      boot_mesg "Stopping..."
      killproc
      ;;

   reload)
      boot_mesg "Reloading..."
      reloadproc
      ;;

   restart)
      ${0} stop
      sleep 1
      ${0} start
      ;;

   status)
      statusproc
      ;;

   *)
      echo "Usage: ${0} {start|stop|reload|restart|status}"
      exit 1
      ;;
esac

# End scriptname
