X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=blobdiff_plain;f=debian%2Fnfs-kernel-server.init;h=fb85f6c11772bb7f36eb57f3e904598c82615190;hp=43fb381f1e8f5226c220acb2d3f965efd950b499;hb=37a6d1755af236449987de6e5acb42d4b96b09ed;hpb=312181c3f67fdce2388f1f58cfc220c09b551c59 diff --git a/debian/nfs-kernel-server.init b/debian/nfs-kernel-server.init old mode 100755 new mode 100644 index 43fb381..fb85f6c --- a/debian/nfs-kernel-server.init +++ b/debian/nfs-kernel-server.init @@ -17,52 +17,86 @@ DESC="NFS kernel daemon" PREFIX=/usr # Exit if required binaries are missing. -[ -x $PREFIX/sbin/rpc.nfsd ] || exit 0 -[ -x $PREFIX/sbin/rpc.mountd ] || exit 0 -[ -x $PREFIX/sbin/exportfs ] || exit 0 +[ -x $PREFIX/sbin/rpc.nfsd ] || exit 0 +[ -x $PREFIX/sbin/rpc.mountd ] || exit 0 +[ -x $PREFIX/sbin/exportfs ] || exit 0 # Read config DEFAULTFILE=/etc/default/nfs-kernel-server RPCNFSDCOUNT=8 +RPCNFSDPRIORITY=0 RPCMOUNTDOPTS= +NEED_SVCGSSD=yes +RPCGSSDOPTS= +RPCSVCGSSDOPTS= +PROCNFSD_MOUNTPOINT=/proc/fs/nfsd if [ -f $DEFAULTFILE ]; then . $DEFAULTFILE fi +do_modprobe() { + if [ -x /sbin/modprobe ] + then + modprobe -q "$1" || true + fi +} + +do_mount() { + if ! grep -E -qs "$1\$" /proc/filesystems + then + return 1 + fi + if ! mountpoint -q "$2" + then + mount -t "$1" "$1" "$2" + return + fi + return 0 +} + # See how we were called. case "$1" in start) cd / # daemons should have root dir as cwd - if grep -q '^/' /etc/exports + if [ -f /etc/exports ] then + do_modprobe nfsd + + # See if our running kernel supports the NFS kernel server + if [ -f /proc/kallsyms ] && ! grep -qE 'init_nf(sd| )' /proc/kallsyms; then + echo "Not starting $DESC: no support in current kernel." + exit 0 + fi + + do_mount nfsd $PROCNFSD_MOUNTPOINT || NEED_SVCGSSD=no printf "Exporting directories for $DESC..." $PREFIX/sbin/exportfs -r echo "done." printf "Starting $DESC:" printf " nfsd" - start-stop-daemon --start --quiet \ + start-stop-daemon --start --oknodo --quiet \ + --nicelevel $RPCNFSDPRIORITY \ --exec $PREFIX/sbin/rpc.nfsd -- $RPCNFSDCOUNT + printf " mountd" + # make sure 127.0.0.1 is a valid source for requests 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=yes - fi + if [ -f /proc/net/rpc/auth.unix.ip/channel ] + then + fgrep -qs 127.0.0.1 /proc/net/rpc/auth.unix.ip/content || { + echo "nfsd 127.0.0.1 2147483647 localhost" >/proc/net/rpc/auth.unix.ip/channel + ClearAddr=yes + } fi $PREFIX/bin/rpcinfo -u localhost nfs 3 >/dev/null 2>&1 || RPCMOUNTDOPTS="$RPCMOUNTDOPTS --no-nfs-version 3" - if [ -n "$ClearAddr" ]; then - echo nfsd 127.0.0.1 1 > /proc/net/rpc/auth.unix.ip/channel - fi + [ -z "$ClearAddr" ] || echo "nfsd 127.0.0.1 1" >/proc/net/rpc/auth.unix.ip/channel - start-stop-daemon --start --quiet \ + start-stop-daemon --start --oknodo --quiet \ --exec $PREFIX/sbin/rpc.mountd -- $RPCMOUNTDOPTS echo "." else @@ -81,9 +115,24 @@ case "$1" in printf "Unexporting directories for $DESC..." $PREFIX/sbin/exportfs -au + if mountpoint -q /proc/nfs/nfsd + then + $PREFIX/sbin/exportfs -f + fi echo "done." ;; + status) + if pidof nfsd >/dev/null + then + echo "nfsd running" + exit 0 + else + echo "nfsd not running" + exit 3 + fi + ;; + reload | force-reload) printf "Re-exporting directories for $DESC..." $PREFIX/sbin/exportfs -r @@ -97,7 +146,7 @@ case "$1" in ;; *) - echo "Usage: nfs-kernel-server {start|stop|reload|force-reload|restart}" + echo "Usage: nfs-kernel-server {start|stop|status|reload|force-reload|restart}" exit 1 ;; esac