5d595cb88e
- Add rc.d/stf and rc.d/faith for stf(4) and faith(4). - Remove rc.d/auto_linklocal and rc.d/network_ipv6. - Move rc.d/sysctl to just before FILESYSTEMS because rc.d/netif depends on some sysctl variables. Reviewed by: brooks MFC after: 3 days
19 lines
237 B
Bash
Executable File
19 lines
237 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: mroute6d
|
|
# REQUIRE: netif routing
|
|
# BEFORE: NETWORKING
|
|
# KEYWORD: nojail
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="mroute6d"
|
|
rcvar=`set_rcvar`
|
|
command="/usr/local/sbin/pim6dd"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|