X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=blobdiff_plain;f=etc%2Fnodist%2Fnfs-server;h=8f1d34b63aad3a6a94db86bbb674a665ef7cb3b8;hp=77daaebaa6460f2546fa0162cf307e850bff8494;hb=312181c3f67fdce2388f1f58cfc220c09b551c59;hpb=912b1f1584d17aea680d561296bff407ea2bb175 diff --git a/etc/nodist/nfs-server b/etc/nodist/nfs-server index 77daaeb..8f1d34b 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. # @@ -53,10 +53,25 @@ start) echo -n "Starting $NFSD: " startdaemon $PREFIX$NFSD $RPCNFSDCOUNT - if /usr/sbin/rpcinfo -u localhost nfs 3 &>/dev/null + # Disable NFSv3 on mountd if we don't have NFSv3 + ClearAddr= + if [ -f /proc/net/rpc/auth.unix.ip/channel ] ; then + if grep -s 127.0.0.1 /proc/net/rpc/auth.unix.ip/content > /dev/null ; then + : address already known + else + echo nfsd 127.0.0.1 2147483647 localhost > /proc/net/rpc/auth.unix.ip/channel + ClearAddr= + fi + fi + rpcinfo -u localhost nfs 3 &>/dev/null + if [ "$?" != "0" ] then RPCMOUNTDOPTS="$RPCMOUNTDOPTS --no-nfs-version 3" fi + if [ -n "$ClearAddr" ]; then + echo nfsd 127.0.0.1 1 > /proc/net/rpc/auth.unix.ip/channel + fi + echo -n "Starting $MOUNTD: " startdaemon $MOUNTD $RPCMOUNTDOPTS