27bc1b287e
while. This is only the script pieces, the glue for the build comes next. Submitted by: Mike Makonnen <makonnen@pacbell.net> Reviewed by: silence on -current and -hackers Prodded by: rwatson
20 lines
259 B
Bash
20 lines
259 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: ipxrouted
|
|
# REQUIRE: SERVERS
|
|
# BEFORE: DAEMON
|
|
# KEYWORD: FreeBSD
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="ipxrouted"
|
|
rcvar=`set_rcvar`
|
|
command="/usr/sbin/IPXrouted"
|
|
command_args="> /dev/null 2>&1"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|