Deleted Added
full compact
nfsd (231667) nfsd (281691)
1#!/bin/sh
2#
1#!/bin/sh
2#
3# $FreeBSD: head/etc/rc.d/nfsd 231667 2012-02-14 10:51:24Z dougb $
3# $FreeBSD: head/etc/rc.d/nfsd 281691 2015-04-18 16:08:06Z trasz $
4#
5
6# PROVIDE: nfsd
7# REQUIRE: mountd hostname gssd nfsuserd
8# KEYWORD: nojail shutdown
9
10. /etc/rc.subr
11
12name="nfsd"
13rcvar="nfs_server_enable"
14command="/usr/sbin/${name}"
15
16load_rc_config $name
17start_precmd="nfsd_precmd"
18sig_stop="USR1"
19
20nfsd_precmd()
21{
4#
5
6# PROVIDE: nfsd
7# REQUIRE: mountd hostname gssd nfsuserd
8# KEYWORD: nojail shutdown
9
10. /etc/rc.subr
11
12name="nfsd"
13rcvar="nfs_server_enable"
14command="/usr/sbin/${name}"
15
16load_rc_config $name
17start_precmd="nfsd_precmd"
18sig_stop="USR1"
19
20nfsd_precmd()
21{
22 if checkyesno oldnfs_server_enable; then
23 rc_flags="-o ${nfs_server_flags}"
22 rc_flags="${nfs_server_flags}"
24
23
25 # Load the module now, so that the vfs.nfsrv sysctl
26 # oids are available.
27 load_kld nfsserver
24 # Load the modules now, so that the vfs.nfsd sysctl
25 # oids are available.
26 load_kld nfsd
28
27
29 if checkyesno nfs_reserved_port_only; then
30 echo 'NFS on reserved port only=YES'
31 sysctl vfs.nfsrv.nfs_privport=1 > /dev/null
32 else
33 sysctl vfs.nfsrv.nfs_privport=0 > /dev/null
34 fi
28 if checkyesno nfs_reserved_port_only; then
29 echo 'NFS on reserved port only=YES'
30 sysctl vfs.nfsd.nfs_privport=1 > /dev/null
35 else
31 else
36 rc_flags="${nfs_server_flags}"
32 sysctl vfs.nfsd.nfs_privport=0 > /dev/null
33 fi
37
34
38 # Load the modules now, so that the vfs.nfsd sysctl
39 # oids are available.
40 load_kld nfsd
41
42 if checkyesno nfs_reserved_port_only; then
43 echo 'NFS on reserved port only=YES'
44 sysctl vfs.nfsd.nfs_privport=1 > /dev/null
45 else
46 sysctl vfs.nfsd.nfs_privport=0 > /dev/null
47 fi
48
49 if checkyesno nfsv4_server_enable; then
50 sysctl vfs.nfsd.server_max_nfsvers=4 > /dev/null
51 force_depend nfsuserd || err 1 "Cannot run nfsuserd"
52 else
53 echo 'NFSv4 is disabled'
54 sysctl vfs.nfsd.server_max_nfsvers=3 > /dev/null
55 fi
35 if checkyesno nfsv4_server_enable; then
36 sysctl vfs.nfsd.server_max_nfsvers=4 > /dev/null
37 force_depend nfsuserd || err 1 "Cannot run nfsuserd"
38 else
39 echo 'NFSv4 is disabled'
40 sysctl vfs.nfsd.server_max_nfsvers=3 > /dev/null
56 fi
57
58 force_depend rpcbind || return 1
59 force_depend mountd || return 1
60}
61
62run_rc_command "$1"
41 fi
42
43 force_depend rpcbind || return 1
44 force_depend mountd || return 1
45}
46
47run_rc_command "$1"