#!/bin/sh
# kFreeBSD do not accept scripts as interpreters, using #!/bin/sh and sourcing.
if [ true != "$INIT_D_SCRIPT_SOURCED" ] ; then
    set "$0" "$@"; INIT_D_SCRIPT_SOURCED=true . /lib/init/init-d-script
fi
### BEGIN INIT INFO
# Provides:          firewall-autoban
# Required-Start:    $remote_fs $syslog firewall
# Required-Stop:     $remote_fs $syslog firewall
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Very simple firewall - automatic ban
### END INIT INFO

# Author: Raphaël Halimi <raphael.halimi@gmail.com>

DESC="very simple firewall - automatic ban"
DAEMON=firewall-autoban
DAEMON_ARGS="-s"
RELOAD_SIGNAL="HUP"
COMMAND_NAME="none"
START_ARGS="--background"
