]> git.decadent.org.uk Git - nfs-utils.git/blob - etc/redhat/nfs.init
2000-07-03 H.J. Lu <hjl@lucon.org>
[nfs-utils.git] / etc / redhat / nfs.init
1 #!/bin/sh
2 #
3 # nfs           This shell script takes care of starting and stopping
4 #               the NFS services.
5 #
6 # chkconfig: - 60 20
7 # description: NFS is a popular protocol for file sharing across TCP/IP \
8 #              networks. This service provides NFS server functionality, \
9 #              which is configured via the /etc/exports file.
10 # probe: true
11
12 # Source function library.
13 . /etc/rc.d/init.d/functions
14
15 # Source networking configuration.
16 if [ ! -f /etc/sysconfig/network ]; then
17     exit 0
18 fi
19
20 . /etc/sysconfig/network
21
22 # Check that networking is up.
23 [ ${NETWORKING} = "no" ] && exit 0
24
25 [ -x /usr/sbin/rpc.nfsd ] || exit 0
26 [ -x /usr/sbin/rpc.mountd ] || exit 0
27 [ -x /usr/sbin/exportfs ] || exit 0
28 [ -s /etc/exports ] || exit 0
29
30 # Number of servers to be started up by default
31 RPCNFSDCOUNT=8
32 # No NFS V3.
33 RPCMOUNTDOPTS="--no-nfs-version 3"
34
35 # See how we were called.
36 case "$1" in
37   start)
38         # Start daemons.
39         echo -n "Starting NFS quotas: "
40         daemon rpc.rquotad
41         echo
42         echo -n "Starting NFS mountd: "
43         daemon rpc.mountd $RPCMOUNTDOPTS
44         echo
45         echo -n "Starting NFS daemon: "
46         daemon rpc.nfsd $RPCNFSDCOUNT
47         echo
48         # Do it the last so that all clients mounting points are
49         # exported. FIXME: Why?
50         action "Starting NFS services: " /usr/sbin/exportfs -r
51         touch /var/lock/subsys/nfs
52         ;;
53   stop)
54         # Stop daemons.
55         echo -n "Shutting down NFS mountd: "
56         killproc rpc.mountd
57         echo
58         echo -n "Shutting down NFS daemon: "
59         killproc nfsd
60         echo
61         echo -n "Shutting down NFS quotas: "
62         killproc rpc.rquotad
63         echo
64         # Do it the last so that clients can still access the server
65         # when the server is running.
66         action "Shutting down NFS services: " /usr/sbin/exportfs -au
67         rm -f /var/lock/subsys/nfs
68         ;;
69   status)
70         status rpc.mountd
71         status nfsd
72         status rpc.rquotad
73         ;;
74   restart)
75         $0 stop
76         $0 start
77         ;;
78   reload)
79         /usr/sbin/exportfs -r
80         touch /var/lock/subsys/nfs
81         ;;
82   probe)
83         if [ ! -f /var/lock/subsys/nfs ] ; then
84           echo start; exit 0
85         fi
86         /sbin/pidof rpc.mountd >/dev/null 2>&1; MOUNTD="$?"
87         /sbin/pidof nfsd >/dev/null 2>&1; NFSD="$?"
88         if [ $MOUNTD = 1 -o $NFSD = 1 ] ; then
89           echo restart; exit 0
90         fi
91         if [ /etc/exports -nt /var/lock/subsys/nfs ] ; then
92           echo reload; exit 0
93         fi
94         ;;
95   *)
96         echo "Usage: nfs {start|stop|status|restart|reload}"
97         exit 1
98 esac
99
100 exit 0