#!/bin/sh
#
# starts and stops acl_loader
#
# chkconfig: 2345 97 03
#
### BEGIN INIT INFO
# Provides:		acl_loader_agentd
# Required-Start:	$network $syslog
# Should-Start:		
# Required-Stop:	$network $syslog
# Should-Stop:
# Default-Start:
# Defalut-Stop:
# Short-Description:
# Description:		params to start and shutdown when it needs
### END INIT INFO

# Source function library
#. /etc/init.d/functions

start()
{
	/usr/bin/acl_loader
	return 0
}

stop()
{
	killall /usr/bin/acl_loader
	return 0
}

#restart()
#{
#stop()
#sleep 4
#start()
#}

# See jow we were called
case "$1" in
  start)
	start
	;;
  stop)
	stop
	;;
# restart)
#restart
#;;
  *)
	echo $"Usage: $0 {start|stop}"
	exit 1
esac

exit 0
