]> git.decadent.org.uk Git - nfs-utils.git/blob - etc/redhat/nfs.init
2000-11-09 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 # Default to NFS version 3.
33 RPCMOUNTDOPTS=""
34
35 # See how we were called.
36 case "$1" in
37   start)
38         # Start daemons.
39         action "Starting NFS services: " /usr/sbin/exportfs -r
40         echo -n "Starting NFS quotas: "
41         daemon rpc.rquotad
42         echo
43         echo -n "Starting NFS daemon: "
44         daemon rpc.nfsd $RPCNFSDCOUNT
45         echo
46
47         # Let's see if we support NFS version 3.
48         /usr/sbin/rpcinfo -u localhost nfs 3 &>/dev/null
49         if [ $? -ne 0 ]; then
50                 RPCMOUNTDOPTS="--no-nfs-version 3"
51         fi
52
53         echo -n "Starting NFS mountd: "
54         daemon rpc.mountd $RPCMOUNTDOPTS
55         echo
56         touch /var/lock/subsys/nfs
57         ;;
58   stop)
59         # Stop daemons.
60         echo -n "Shutting down NFS mountd: "
61         killproc rpc.mountd
62         echo
63         echo -n "Shutting down NFS daemon: "
64         killproc nfsd
65         echo
66         echo -n "Shutting down NFS quotas: "
67         killproc rpc.rquotad
68         echo
69         # Do it the last so that clients can still access the server
70         # when the server is running.
71         action "Shutting down NFS services: " /usr/sbin/exportfs -au
72         rm -f /var/lock/subsys/nfs
73         ;;
74   status)
75         status rpc.mountd
76         status nfsd
77         status rpc.rquotad
78         ;;
79   restart)
80         $0 stop
81         $0 start
82         ;;
83   reload)
84         /usr/sbin/exportfs -r
85         touch /var/lock/subsys/nfs
86         ;;
87   probe)
88         if [ ! -f /var/lock/subsys/nfs ] ; then
89           echo start; exit 0
90         fi
91         /sbin/pidof rpc.mountd >/dev/null 2>&1; MOUNTD="$?"
92         /sbin/pidof nfsd >/dev/null 2>&1; NFSD="$?"
93         if [ $MOUNTD = 1 -o $NFSD = 1 ] ; then
94           echo restart; exit 0
95         fi
96         if [ /etc/exports -nt /var/lock/subsys/nfs ] ; then
97           echo reload; exit 0
98         fi
99         ;;
100   *)
101         echo "Usage: nfs {start|stop|status|restart|reload}"
102         exit 1
103 esac
104
105 exit 0