#!/bin/sh

# PROVIDE: bird dynamicrouting
# REQUIRE: LOGIN
# KEYWORD: shutdown
#
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
# to enable this service:
#
# bird_enable (bool):   Set to NO by default.
#               Set it to YES to enable bird.
# bird_config (path):   Set to /usr/local/etc/bird.conf
#               by default.
#

. /etc/rc.subr

name="bird"
rcvar=bird_enable

command=/usr/local/sbin/${name}

load_rc_config $name

: ${bird_enable="NO"}
: ${bird_config="/usr/local/etc/bird.conf"}
: ${bird_group="birdvty"}

command_args="-c $bird_config -g $bird_group"

run_rc_command "$1"
