blob: e95586b21269023c871dc9741ac429429f22fb42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
#!/bin/sh
#
# nfs-kernel-server
# This shell script takes care of starting and stopping
# the kernel-mode NFS server.
#
# chkconfig: 345 60 20
# description: NFS is a popular protocol for file sharing across TCP/IP \
# networks. This service provides NFS server functionality, \
# which is configured via the /etc/exports file.
#
PREFIX=/usr
[ -x $PREFIX/sbin/rpc.nfsd ] || exit 0
[ -x $PREFIX/sbin/rpc.mountd ] || exit 0
[ -x $PREFIX/sbin/exportfs ] || exit 0
# What is this?
DESC="NFS kernel daemon"
RPCNFSDCOUNT=8 # Number of servers to be started up by default
RPCMOUNTDOPTS=
# See how we were called.
case "$1" in
start)
cd / # daemons should have root dir as cwd
if grep -q '^/' /etc/exports; then
printf "Exporting directories for $DESC..."
$PREFIX/sbin/exportfs -r
echo "done."
printf "Starting $DESC:"
printf " nfsd"
start-stop-daemon --start --quiet \
--exec $PREFIX/sbin/rpc.nfsd -- $RPCNFSDCOUNT
printf " mountd"
$PREFIX/bin/rpcinfo -u localhost nfs 3 > /dev/null 2>&1 ||
RPCMOUNTDOPTS="$RPCMOUNTDOPTS --no-nfs-version 3"
start-stop-daemon --start --quiet \
--exec $PREFIX/sbin/rpc.mountd -- $RPCMOUNTDOPTS
echo "."
else
echo "Not starting $DESC: No exports."
fi
;;
stop)
printf "Stopping $DESC: mountd"
start-stop-daemon --stop --oknodo --quiet \
--exec $PREFIX/sbin/rpc.mountd
printf " nfsd"
start-stop-daemon --stop --oknodo --quiet \
--name nfsd --user root --signal 2
echo "."
printf "Unexporting directories for $DESC..."
$PREFIX/sbin/exportfs -au
echo "done."
;;
reload | force-reload)
printf "Re-exporting directories for $DESC..."
$PREFIX/sbin/exportfs -r
echo "done."
;;
restart)
$0 stop
sleep 1
$0 start
;;
*)
echo "Usage: nfs-kernel-server {start|stop|reload|force-reload|restart}"
exit 1
;;
esac
exit 0
|