mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-24 09:25:01 +00:00
b7ee07bbae
PR: ports/185180 Submitted by: Radim Kolar <hsn@sendmail.cz> Approved by: az
35 lines
623 B
Bash
35 lines
623 B
Bash
#!/bin/sh
|
|
|
|
# $FreeBSD$
|
|
#
|
|
# PROVIDE: bird6 dynamicrouting
|
|
# REQUIRE: LOGIN
|
|
# KEYWORD: shutdown
|
|
#
|
|
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
|
|
# to enable this service:
|
|
#
|
|
# bird6_enable (bool): Set to NO by default.
|
|
# Set it to YES to enable bird6.
|
|
# bird6_config (path): Set to %%PREFIX%%/etc/bird6.conf
|
|
# by default.
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="bird6"
|
|
rcvar=bird6_enable
|
|
|
|
command=%%PREFIX%%/sbin/${name}
|
|
|
|
load_rc_config $name
|
|
|
|
extra_commands="reload"
|
|
|
|
: ${bird6_enable="NO"}
|
|
: ${bird6_config="%%PREFIX%%/etc/bird6.conf"}
|
|
|
|
command_args="-c $bird6_config"
|
|
|
|
run_rc_command "$1"
|