mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 15:57:05 -05:00
19 lines
258 B
Bash
Executable file
19 lines
258 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: ipxrouted
|
|
# REQUIRE: SERVERS
|
|
# BEFORE: DAEMON
|
|
# KEYWORD: nojail
|
|
|
|
. /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"
|