f0a011a1b1
/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)
20 lines
239 B
Bash
Executable File
20 lines
239 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: nfscbd
|
|
# REQUIRE: NETWORKING nfsuserd
|
|
# KEYWORD: nojail shutdown
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="nfscbd"
|
|
rcvar=`set_rcvar`
|
|
command="/usr/sbin/${name}"
|
|
sig_stop="USR1"
|
|
|
|
load_rc_config $name
|
|
|
|
run_rc_command "$1"
|