mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-07 06:40:06 +00:00
d5290f8b86
PR: 21890 Submitted by: ae Reported by: Joseph Mulloy <freebsd-bugs@joe.mulloy.me> Approved by: melifaro (maintainer) Fix build with option FIREWALL PR: 217150 Submitted by: olivier Reported by: O. Hartmann <ohartmann@walstatt.org> Approved by: melifaro (maintainer) Sponsored by: Orange
35 lines
647 B
Bash
35 lines
647 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="-P /var/run/${name}.pid -c $bird6_config"
|
|
|
|
run_rc_command "$1"
|