#!/bin/sh

# PROVIDE: rotorouter
# REQUIRE: LOGIN
# KEYWORD: shutdown
#
# Add the following line to /etc/rc.conf[.local] to enable rotorouter:
#
#   rotorouter_enable="YES"
#
# See rotorouter(8) for flags.
#

. /etc/rc.subr

name=rotorouter
rcvar=rotorouter_enable

command=/usr/local/sbin/${name}
command_args='&'

load_rc_config $name

: ${rotorouter_enable-"NO"}
: ${rotorouter_flags-"-h /usr/local/etc/rotorouter.conf"}

run_rc_command "$1"
