X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=blobdiff_plain;f=debian%2Fnfs-common.init;h=59fc59df6fecad7429ec9b24a762a5b72675630e;hp=63bc29c4d138ba51887c66c1b7fac498ab8bdb89;hb=b7f4ad19f9b3b8e0f93da719a86d0e865be5ab75;hpb=7c9a0d40bbf7bc54373c94786c0e8469616fec11 diff --git a/debian/nfs-common.init b/debian/nfs-common.init index 63bc29c..59fc59d 100755 --- a/debian/nfs-common.init +++ b/debian/nfs-common.init @@ -9,37 +9,58 @@ # locking functionality. # -PREFIX= +set -e + +# What is this? +DESC="NFS common utilities" -NEED_LOCKD=yes -if test -f /proc/ksyms -then - # We need to be conservative and run lockd, - # unless we can prove that it isn't required. - grep -q lockdctl /proc/ksyms || NEED_LOCKD=no +# Read config +DEFAULTFILE=/etc/default/nfs-common +PREFIX= +NEED_LOCKD= +if [ -f $DEFAULTFILE ]; then + . $DEFAULTFILE fi -[ -x $PREFIX/sbin/rpc.statd ] || exit 0 -[ -x $PREFIX/sbin/rpc.lockd ] || [ "$NEED_LOCKD" = no ] || exit 0 +# Determine whether lockd daemon is required. +case "$NEED_LOCKD" in +yes|no) ;; +*) case `uname -r` in + '' | [01].* | 2.[0123].* ) + # Older kernels may or may not need a lockd daemon. + # We must assume they do, unless we can prove otherwise. + # (A false positive here results only in a harmless message.) + NEED_LOCKD=yes + if test -f /proc/ksyms + then + grep -q lockdctl /proc/ksyms || NEED_LOCKD=no + fi + ;; -# What is this? -DESC="NFS common utilities" + *) # Modern kernels (>= 2.4) start a lockd thread automatically. + NEED_LOCKD=no + ;; + esac + ;; +esac -# Make sure that daemon cwds are in root fs. -cd / +# Exit if required binaries are missing. +[ -x $PREFIX/sbin/rpc.statd ] || exit 0 +[ -x $PREFIX/sbin/rpc.lockd ] || [ "$NEED_LOCKD" = no ] || exit 0 # See how we were called. case "$1" in start) + cd / # daemons should have root dir as cwd printf "Starting $DESC:" printf " statd" start-stop-daemon --start --quiet \ - --exec $PREFIX/sbin/rpc.statd + --exec $PREFIX/sbin/rpc.statd -- $STATDOPTS if [ "$NEED_LOCKD" = yes ] then printf " lockd" start-stop-daemon --start --quiet \ - --exec $PREFIX/sbin/rpc.lockd + --exec $PREFIX/sbin/rpc.lockd || true fi echo "." ;; @@ -50,11 +71,11 @@ case "$1" in then printf " lockd" start-stop-daemon --stop --oknodo --quiet \ - --exec $PREFIX/sbin/rpc.lockd + --name rpc.lockd --user 0 || true fi printf " statd" start-stop-daemon --stop --oknodo --quiet \ - --exec $PREFIX/sbin/rpc.statd + --name rpc.statd --user 0 echo "." ;;