X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=etc%2Fnodist%2Fnfs-server;h=4517937f586780be80fc95900fcd61f172cf663b;hb=77c32fa565d6af59cbeb8601e08efa9af6ef3d81;hp=d95eadab78997a1ce51c0517d194a153828664ea;hpb=3c70715e64085e92ced46801ee47ac5c36d061d9;p=nfs-utils.git diff --git a/etc/nodist/nfs-server b/etc/nodist/nfs-server index d95eada..4517937 100755 --- a/etc/nodist/nfs-server +++ b/etc/nodist/nfs-server @@ -3,7 +3,7 @@ # independent fashion. # # description: starts and stops nfs server services -# chkconfig: 2345 99 01 +# chkconfig: 2345 60 20 # # Copyright (c) 2000-2001 Mission Critical Linux, Inc. # @@ -50,10 +50,17 @@ start) $EXPORTFS -r echo "done." - if /usr/sbin/rpcinfo -u localhost nfs 3 &>/dev/null + echo -n "Starting $NFSD: " + startdaemon $PREFIX$NFSD $RPCNFSDCOUNT + + # Disable NFSv3 on mountd if we don't have NFSv3 + rpcinfo -u localhost nfs 3 &>/dev/null + if [ "$?" != "0" ] then RPCMOUNTDOPTS="$RPCMOUNTDOPTS --no-nfs-version 3" fi + echo -n "Starting $MOUNTD: " + startdaemon $MOUNTD $RPCMOUNTDOPTS # Start rquotad if it is set if [ -n "$RQUOTAD" ] @@ -62,11 +69,6 @@ start) startdaemon $RQUOTAD fi - echo -n "Starting $MOUNTD: " - startdaemon $MOUNTD $RPCMOUNTDOPTS - echo -n "Starting $NFSD: " - startdaemon $PREFIX$NFSD $RPCNFSDCOUNT - # if this lock file doesn't exist, init won't even try to run # the shutdown script for this service on RedHat systems! # on non-RedHat systems, /var/lock/subsys may not exist.