source: bootscripts-standard/cblfs/init.d/nfs-server@ fc18225

Last change on this file since fc18225 was 45bb4ac, checked in by Joe Ciccone <jciccone@…>, 16 years ago

rpc.mountd depends on having /proc/fs/nfsd mounted, nfsv3 works fine without this filesystem but nfs4 will fail to mount with no such file or directory, you also will see no logs about a failure from the rpc.mountd daemon.

re-order the bootscript accordingly.

  • Property mode set to 100644
File size: 3.1 KB
RevLine 
[7df280d]1#!/bin/bash
[7125722]2# Begin $rc_base/init.d/nfs-server
3
4# Based on sysklogd script from LFS-3.1 and earlier.
5# Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org
6
7#$LastChangedBy: bdubbs $
8#$Date: 2006-09-10 19:41:47 -0500 (Sun, 10 Sep 2006) $
9
10. /etc/sysconfig/rc
11. $rc_functions
12. /etc/sysconfig/nfs-server
13
14case "$1" in
15 start)
[45bb4ac]16 # NFSD support only in 2.6 kernel
17 /bin/uname -r | /bin/grep "^2.6" 2>&1 > /dev/null
18 if [ $? = 0 ]; then
19 boot_mesg "Mounting nfsd virtual filesystem..."
20 /bin/mount -t nfsd none /proc/fs/nfsd 2>&1 > /dev/null
21 evaluate_retval
22 fi
23
[7125722]24 boot_mesg "Starting NFS mountd..."
25 loadproc /usr/sbin/rpc.mountd
26
[ad1a0bc]27 if [ "$NFS4" = "yes" ]; then
[eec6401]28 boot_mesg "Mounting rpc_pipefs virtual filesystem..."
29 /bin/mount -t rpc_pipefs rpc_pipefs /var/lib/nfs/rpc_pipefs 2>&1 > /dev/null
30 evaluate_retval
31
[ad1a0bc]32 boot_mesg "Starting NFS4 idmapd..."
33 loadproc /usr/sbin/rpc.idmapd
34
35 boot_mesg "Starting NFS4 svcgssd..."
36 loadproc /usr/sbin/rpc.svcgssd
37 fi
38
[7125722]39 boot_mesg "Starting NFS nfsd..."
40 loadproc /usr/sbin/rpc.nfsd -p $PORT $PROCESSES
41
42 boot_mesg "Starting NFS statd..."
43 loadproc /usr/sbin/rpc.statd
44
45 if [ "$QUOTAS" = "yes" ]; then
46 boot_mesg "Starting NFS rquotad..."
47 loadproc /usr/sbin/rpc.rquotad
48 fi
49
50 # Make ceratin that the list is refreshed on
51 # a restart.
52 boot_mesg "Exporting NFS Filesystems..."
53 /usr/sbin/exportfs -ra 2>&1 > /dev/null
54 evaluate_retval
55 ;;
56
57 stop)
58 boot_mesg "Stopping NFS statd..."
59 killproc /usr/sbin/rpc.statd
60
61 boot_mesg "Stopping NFS nfsd..."
[8bfe893]62 loadproc /usr/sbin/rpc.nfsd 0
[7125722]63
[ad1a0bc]64 if [ "$NFS4" = "yes" ]; then
65 boot_mesg "Stopping NFS svcgssd..."
66 killproc /usr/sbin/rpc.svcgssd
67
68 boot_mesg "Stopping NFS idmapd..."
69 killproc /usr/sbin/rpc.idmapd
[eec6401]70
71 boot_mesg "Unmounting rpc_pipefs virtual filesystem..."
72 /bin/umount /var/lib/nfs/rpc_pipefs 2>&1 > /dev/null
73 evaluate_retval
[ad1a0bc]74 fi
75
[7125722]76 boot_mesg "Stopping NFS mountd..."
77 killproc /usr/sbin/rpc.mountd
78
79 if [ "$QUOTAS" = "yes" ]; then
80 boot_mesg "Stopping NFS rquotad..."
81 killproc /usr/sbin/rpc.rquotad
82 fi
83
84 boot_mesg "Refreshing NFS Exported Filesystems..."
85 /usr/sbin/exportfs -au 2>&1 > /dev/null
86 evaluate_retval
87
[45bb4ac]88 # Remove a pid file that isn't done automatically
89 boot_mesg "Removing the rpc.statd pid file if it exists"
90 if [ -f /var/run/rpc.statd.pid ]; then
91 rm -f /var/run/rpc.statd.pid
92 fi
93
[7125722]94 # NFSD support only in 2.6 kernel
[45bb4ac]95 /bin/uname -r | /bin/grep "^2.6" 2>&1 > /dev/null
[7125722]96 if [ $? = 0 ]; then
97 boot_mesg "Unmounting NFS Virtual Filesystem..."
98 /bin/umount /proc/fs/nfsd 2>&1 > /dev/null
99 evaluate_retval
100 fi
101
102 ;;
103
104 reload)
105 boot_mesg "Reloading NFS Server..."
106 /usr/sbin/exportfs -ra
107 evaluate_retval
108 ;;
109
110 restart)
111 $0 stop
112 sleep 1
113 $0 start
114 ;;
115
116 status)
117 statusproc /usr/sbin/rpc.mountd
118 ## Special case for nfsd with no full path
[ad1a0bc]119 if [ "$NFS4" = "yes" ]; then
120 statusproc /usr/sbin/rpc.idmapd
[91e0c48]121 statusproc /usr/sbin/rpc.svcgssd
[ad1a0bc]122 fi
[7125722]123 statusproc nfsd
124 statusproc /usr/sbin/rpc.statd
125 if [ "$QUOTA" = "yes" ]; then
126 statusproc rpc.rquotad
127 fi
128 ;;
129
130 *)
131 echo "Usage: $0 {start|stop|reload|restart|status}"
132 exit 1
133 ;;
134esac
135
136# End $rc_base/init.d/nfs-server
Note: See TracBrowser for help on using the repository browser.