forked from Lainports/freebsd-ports
While here, update WWW PR: 261094 Reported by: Dennis Noordsij <dennis.noordsij@alumni.helsinki.fi>
32 lines
646 B
Bash
32 lines
646 B
Bash
#!/bin/sh
|
|
|
|
# PROVIDE: babeld dynamicrouting
|
|
# REQUIRE: LOGIN
|
|
# KEYWORD: shutdown
|
|
#
|
|
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
|
|
# to enable this service:
|
|
#
|
|
# babeld_enable (bool): Set to NO by default.
|
|
# Set it to YES to enable babeld.
|
|
# babeld_config (path): Set to /usr/local/etc/babeld.conf
|
|
# by default.
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="babeld"
|
|
rcvar=babeld_enable
|
|
|
|
command=/usr/local/bin/${name}
|
|
|
|
load_rc_config $name
|
|
|
|
extra_commands="reload"
|
|
|
|
: ${babeld_enable="NO"}
|
|
: ${babeld_config="/usr/local/etc/babeld.conf"}
|
|
|
|
command_args="-D -I /var/run/${name}.pid -c $babeld_config"
|
|
|
|
run_rc_command "$1"
|