mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 15:24:40 -05:00
/etc/rc.d. They use the following new rc variables:
nfsv4_server_enable - set to "YES" to run the experimental server
nfsuserd_enable - set to "YES" to run nfsuserd for NFSv4 client and
server
nfsuserd_flags - command line flags for nfsuserd
nfscbd_enable - set to "YES" to run the experimental nfs client's
NFSv4 callback daemon
nfscbd_flags - command line flags for nfscbd
Reviewed by: dougb
Approved by: kib (mentor)
19 lines
234 B
Bash
Executable file
19 lines
234 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: nfsuserd
|
|
# REQUIRE: NETWORKING
|
|
# KEYWORD: nojail shutdown
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="nfsuserd"
|
|
rcvar=`set_rcvar`
|
|
command="/usr/sbin/${name}"
|
|
sig_stop="USR1"
|
|
|
|
load_rc_config $name
|
|
|
|
run_rc_command "$1"
|