]> git.decadent.org.uk Git - nfs-utils.git/commitdiff
Use kernel version to short-circuit the lockd test in nfs-common.init.
authorchip <chip>
Wed, 29 Oct 2003 21:32:50 +0000 (21:32 +0000)
committerchip <chip>
Wed, 29 Oct 2003 21:32:50 +0000 (21:32 +0000)
debian/changelog
debian/nfs-common.init

index 47210b1b942107e78348c964db3a71efe082b375..0326c133a47b3c2b1689e55db418b97d4f798530 100644 (file)
@@ -1,3 +1,11 @@
+nfs-utils (1:1.0.6-2) unstable; urgency=low
+
+  * Test kernel version in init script; if kernel is 2.4 or later,
+    rpc.lockd is unnecessary.  Existing tests still apply to earlier
+    kernels.  (closes: #205867)
+
+ --
+
 nfs-utils (1:1.0.6-1) unstable; urgency=low
 
   * New upstream version:
index f6c4a8ad2a3bad07c8019c0b6f7534a440c4f45a..59fc59df6fecad7429ec9b24a762a5b72675630e 100755 (executable)
@@ -22,16 +22,25 @@ if [ -f $DEFAULTFILE ]; then
     . $DEFAULTFILE
 fi
 
-# Determine whether lockd is required
+# Determine whether lockd daemon is required.
 case "$NEED_LOCKD" in
 yes|no)        ;;
-*)  # We must be conservative and run lockd,
-    #  unless we can prove that it's not required.
-    NEED_LOCKD=yes
-    if test -f /proc/ksyms
-    then
-       grep -q lockdctl /proc/ksyms || NEED_LOCKD=no
-    fi
+*)  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
+       ;;
+
+    *)  # Modern kernels (>= 2.4) start a lockd thread automatically.
+       NEED_LOCKD=no
+       ;;
+    esac
     ;;
 esac