2a7ea7e487
o Ensure rc.d/network2 and rc.d/network3 are not automatically run during boot o Modify script headers so rcorder(8) can put the two scripts in the correct sequence.
22 lines
366 B
Bash
Executable File
22 lines
366 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $NetBSD: mrouted,v 1.6 2002/03/22 04:33:59 thorpej Exp $
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: mrouted
|
|
# REQUIRE: netif routing
|
|
# KEYWORD: FreeBSD NetBSD
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="mrouted"
|
|
rcvar=`set_rcvar`
|
|
command="/usr/sbin/${name}"
|
|
pidfile="/var/run/${name}.pid"
|
|
required_files="/etc/${name}.conf"
|
|
extra_commands="reload"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|