PROGRAM=/usr/sbin/fwknopd
RUNLEVEL=3
NEEDS="+network"

. /etc/init.d/smgl_init

start()
{
  echo "Starting the fwknop daemons..."
  /usr/sbin/fwknopd
  evaluate_retval
}

stop()
{
  echo "Stopping the fwknop daemons..."
  /usr/sbin/fwknopd --Kill
  evaluate_retval
}

status()
{
  /usr/sbin/fwknopd --Status
}
