]> git.decadent.org.uk Git - nfs-utils.git/blob - etc/nodist/nfs-server
4517937f586780be80fc95900fcd61f172cf663b
[nfs-utils.git] / etc / nodist / nfs-server
1 #!/bin/sh
2 # nfs   This shell script starts and stops the nfs services in a distribution
3 #       independent fashion.
4 #
5 # description:  starts and stops nfs server services
6 # chkconfig: 2345 60 20
7 #
8 # Copyright (c) 2000-2001 Mission Critical Linux, Inc.
9 #
10
11 PATH=/sbin:/bin:/usr/sbin:/usr/bin
12 export PATH
13
14 # Who am I?
15 SCRIPT_NAME=`basename $0`
16
17 # Grab our daemon functions.
18 . `dirname $0`/nfs-functions
19
20 # Kernel daemons and options
21 PREFIX="rpc."           # Prefix for kernel execs (usually "rpc.")
22 NFSD="nfsd"             # Kernel NFS Server
23 RPCNFSDCOUNT="8"        # Number of nfsd threads
24
25 # User daemons and options
26 RQUOTAD="rpc.rquotad"   # Remote quota server
27 MOUNTD="rpc.mountd"     # Mount server
28 RPCMOUNTDOPTS=""        # options for rpc.mountd
29 EXPORTFS="exportfs"     # Exportfs command
30
31 SCRIPT_NAME=`basename $0`
32 DESC="NFS kernel daemon"
33
34 # We use "type -path" instead of "which" since it's internal to bash.
35 [ -x "`type -path $PREFIX$NFSD`" ] || exit 0
36 [ -x "`type -path $MOUNTD`" ] || exit 0
37
38 # Also make sure we have our exportfs command.
39 [ -x "`type -path $EXPORTFS`" ] || exit 0
40 [ -s /etc/exports ] || exit 0
41
42 # rquotad is not required for NFS to work, however.
43 # Unset if it is not present.
44 [ -x "`type -path $RQUOTAD`" ] || unset RQUOTAD
45
46 # Handle how we were called.
47 case "$1" in
48 start)
49     echo -n "Exporting directories for $DESC..."
50     $EXPORTFS -r
51     echo "done."
52
53     echo -n "Starting $NFSD: "
54     startdaemon $PREFIX$NFSD $RPCNFSDCOUNT
55
56     # Disable NFSv3 on mountd if we don't have NFSv3
57     rpcinfo -u localhost nfs 3 &>/dev/null 
58     if [ "$?" != "0" ]
59     then
60         RPCMOUNTDOPTS="$RPCMOUNTDOPTS --no-nfs-version 3"
61     fi
62     echo -n "Starting $MOUNTD: "
63     startdaemon $MOUNTD $RPCMOUNTDOPTS
64
65     # Start rquotad if it is set
66     if [ -n "$RQUOTAD" ]
67     then
68         echo -n "Starting $RQUOTAD: "
69         startdaemon $RQUOTAD
70     fi
71
72     # if this lock file doesn't exist, init won't even try to run
73     # the shutdown script for this service on RedHat systems!
74     # on non-RedHat systems, /var/lock/subsys may not exist.
75     touch /var/lock/subsys/$SCRIPT_NAME &> /dev/null
76     ;;
77
78 stop)
79     for process in $RQUOTAD $MOUNTD $NFSD
80     do
81         echo -n "Stopping $process: "
82         stopdaemon $process
83     done
84
85     echo "Unexporting directories for $DESC..."
86     $EXPORTFS -au
87     rm -f /var/lock/subsys/$SCRIPT_NAME 
88     echo "done."
89     ;;
90
91 restart)
92     $0 stop
93     $0 start
94     ;;
95
96 reload)
97     # Update exports
98     echo "Re-exporting directories for $DESC..."
99     $EXPORTFS -r
100     touch /var/lock/subsys/$SCRIPT_NAME &> /dev/null
101     echo "done."
102     ;;
103
104 status)
105     # First, check status of userland daemons
106     for process in $RQUOTAD $MOUNTD $NFSD
107     do
108         daemonstatus $process
109     done
110     exit 0
111     ;;
112
113 *)
114     echo "Usage: $0 {start|stop|status|restart|reload}"
115     exit 1
116 esac