]> git.decadent.org.uk Git - nfs-utils.git/commitdiff
* Start nfs-common after nfs-kernel-server so that the server is running
authorchip <chip>
Mon, 16 Sep 2002 01:56:32 +0000 (01:56 +0000)
committerchip <chip>
Mon, 16 Sep 2002 01:56:32 +0000 (01:56 +0000)
    when statd restarts.  In postinst, remove bad rc.d links from old
    packages.  From Philippe Troin <phil@fifi.org>.  (closes: #160800)
  * Make init scripts exit with non-zero status when daemons don't start.
  * Add titles to templates where I forgot them.  (closes: #158489)
  * Add /etc/default/{nfs-common,nfs-kernel-server} so setting random
    parameters doesn't require editing init scripts.  (closes: #131539)
  * Split templates into separate files, and add French templates.
    (closes: #134630)
  * Use invoke-rc.d to avoid premature daemon starts.  (closes: 158574)
  * Change priority of nfs-kernel-server to 'optional'.

18 files changed:
debian/changelog
debian/control
debian/nfs-common.conffiles
debian/nfs-common.default [new file with mode: 0644]
debian/nfs-common.init
debian/nfs-common.postinst
debian/nfs-common.templates
debian/nfs-common.templates.de [new file with mode: 0644]
debian/nfs-common.templates.fr [new file with mode: 0644]
debian/nfs-common.templates.ru [new file with mode: 0644]
debian/nfs-kernel-server.conffiles
debian/nfs-kernel-server.default [new file with mode: 0644]
debian/nfs-kernel-server.init
debian/nfs-kernel-server.postinst
debian/nfs-kernel-server.templates
debian/nfs-kernel-server.templates.de [new file with mode: 0644]
debian/nfs-kernel-server.templates.fr [new file with mode: 0644]
debian/nfs-kernel-server.templates.ru [new file with mode: 0644]

index ce71df2cd7df148ccf67647405272c5b555c2e51..1954f304ed3d312c606d01cdcc099ab8f345174c 100644 (file)
@@ -1,3 +1,21 @@
+nfs-utils (1:1.0.2-1) unstable; urgency=low
+
+  * New upstream version:
+    > Allow program stdin to be a non-INET socket.  (closes: #142557)
+  * Start nfs-common after nfs-kernel-server so that the server is running
+    when statd restarts.  In postinst, remove bad rc.d links from old
+    packages.  From Philippe Troin <phil@fifi.org>.  (closes: #160800)
+  * Make init scripts exit with non-zero status when daemons don't start.
+  * Add titles to templates where I forgot them.  (closes: #158489)
+  * Add /etc/default/{nfs-common,nfs-kernel-server} so setting random
+    parameters doesn't require editing init scripts.  (closes: #131539)
+  * Split templates into separate files, and add French templates.
+    (closes: #134630)
+  * Use invoke-rc.d to avoid premature daemon starts.  (closes: 158574)
+  * Change priority of nfs-kernel-server to 'optional'.
+
+ --
+
 nfs-utils (1:1.0.1-1) unstable; urgency=low
 
   * New upstream version:
index 787893531299cd2651f08fe1efd3a5acf16fff12..8b46a68de8832c83fc4b620d76678fe33263ab2f 100644 (file)
@@ -6,6 +6,7 @@ Build-Depends: debhelper, libwrap0-dev
 Standards-Version: 3.1.1.1
 
 Package: nfs-kernel-server
+Priority: optional
 Architecture: any
 Depends: debconf (>= 1.0), nfs-common (>= 1:0.3.3-3), ${shlibs:Depends}
 Provides: knfs, nfs-server
index 7ad0f45fb9a593edd750e9cf8e7b3e909c92bb15..1e04e55a556899c27d87c2abf5d4042d6145d12b 100644 (file)
@@ -1 +1,2 @@
+/etc/default/nfs-common
 /etc/init.d/nfs-common
diff --git a/debian/nfs-common.default b/debian/nfs-common.default
new file mode 100644 (file)
index 0000000..664c2e7
--- /dev/null
@@ -0,0 +1,8 @@
+# Options for rpc.statd.
+#   Should rpc.statd listen on a specific port?
+#   If so, set this variable to a statd argument like: "--port 1000".
+STATDOPTS=
+
+# Are you _sure_ that your kernel does or does not need a lockd daemon?
+# If so, set this variable to either "yes" or "no".
+NEED_LOCKD=
index 2ae17b3e1b165b263a1ee9948275291ac021250e..f6c4a8ad2a3bad07c8019c0b6f7534a440c4f45a 100755 (executable)
@@ -9,26 +9,36 @@
 #             locking functionality.
 #
 
-PREFIX=
+set -e
 
-# Should rpc.statd listen on a specific port?
-# If so, set this variable to a statd argument like: "--port 1000".
-STATDPORT=""
+# 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
 
+# Determine whether lockd 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
+    ;;
+esac
+
+# Exit if required binaries are missing.
 [ -x $PREFIX/sbin/rpc.statd ] || exit 0
 [ -x $PREFIX/sbin/rpc.lockd ] || [ "$NEED_LOCKD" = no ] || exit 0
 
-# What is this?
-DESC="NFS common utilities"
-
 # See how we were called.
 case "$1" in
   start)
@@ -36,12 +46,12 @@ case "$1" in
        printf "Starting $DESC:"
        printf " statd"
        start-stop-daemon --start --quiet \
-           --exec $PREFIX/sbin/rpc.statd -- $STATDPORT
+           --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 "."
        ;;
@@ -52,7 +62,7 @@ case "$1" in
        then
            printf " lockd"
            start-stop-daemon --stop --oknodo --quiet \
-               --name rpc.lockd --user 0
+               --name rpc.lockd --user 0  || true
        fi
        printf " statd"
        start-stop-daemon --stop --oknodo --quiet \
index 37eba1a4743a0b6034b5741c975f988a7a1e38db..0b9e3bd817a6164b52f8228b522546b68e211663 100755 (executable)
@@ -4,10 +4,17 @@
 
 case "$1" in
     configure)
-       update-rc.d nfs-common defaults 19 81 >/dev/null
+       if [ "$2" != "" -a "$2" != "<unknown>" ] \
+          && dpkg --compare-versions "$2" lt "1:1.0-3" \
+          || ( dpkg --compare-versions "$2" ge "1:1.0.1" \
+               && dpkg --compare-versions "$2" lt "1:1.0.2-1" )
+       then
+           update-rc.d -f nfs-common-remove >/dev/null
+       fi
+       update-rc.d nfs-common defaults 21 79 >/dev/null
        ;;
 esac
 
 act="restart"
 [ "$1:$2" = "configure:" ] && act="start"
-/etc/init.d/nfs-common $act
+invoke-rc.d nfs-common $act
index fe11b12e2d5efa9d73ba3687fb2f8fe4ebf546dc..87809939b43b0eb648f0c5116980cdf44d99f8d4 100644 (file)
@@ -3,11 +3,3 @@ Type: note
 Description: statd uses tcpwrappers
  The statd daemon uses tcpwrappers to control access.  To configure
  it, use program name "statd" in /etc/hosts.allow and /etc/hosts.deny.
-Description-de: statd benutzt tcpwrappers
- Der statd-Daemon benutzt tcpwrappers für die Zugriffskontrolle. Um
- diesen zu konfigurieren, benutzen Sie den Namen "statd" in den Dateien
- /etc/hosts.allow und /etc/hosts.deny.
-Description-ru: statd ÉÓÐÏÌØÚÕÅÔ tcp-×ÒÁÐÐÅÒÙ
- äÅÍÏΠ statd  ÉÓÐÏÌØÚÕÅÔ  tcp-×ÒÁÐÐÅÒÙ  ÄÌÑ ÕÐÒÁ×ÌÅÎÉÑ ÄÏÓÔÕÐÏÍ. þÔÏÂÙ
- ÎÁÓÔÒÏÉÔØ  ×ÒÁÐÐÅÒ,   ÉÓÐÏÌØÚÕÊÔÅ   ÉÍÑ  ÐÒÏÇÒÁÍÍÙ  "statd"  ×  ÆÁÊÌÁÈ
- /etc/hosts.allow É /etc/hosts.deny.
diff --git a/debian/nfs-common.templates.de b/debian/nfs-common.templates.de
new file mode 100644 (file)
index 0000000..5046bfa
--- /dev/null
@@ -0,0 +1,9 @@
+Template: nfs-common/tcpwrappers-statd
+Type: note
+Description: statd uses tcpwrappers
+ The statd daemon uses tcpwrappers to control access.  To configure
+ it, use program name "statd" in /etc/hosts.allow and /etc/hosts.deny.
+Description-de: statd benutzt tcpwrappers
+ Der statd-Daemon benutzt tcpwrappers für die Zugriffskontrolle. Um
+ diesen zu konfigurieren, benutzen Sie den Namen "statd" in den Dateien
+ /etc/hosts.allow und /etc/hosts.deny.
diff --git a/debian/nfs-common.templates.fr b/debian/nfs-common.templates.fr
new file mode 100644 (file)
index 0000000..d2b72f0
--- /dev/null
@@ -0,0 +1,9 @@
+Template: nfs-common/tcpwrappers-statd
+Type: note
+Description: statd uses tcpwrappers
+ The statd daemon uses tcpwrappers to control access.  To configure it, use
+ program name "statd" in /etc/hosts.allow and /etc/hosts.deny.
+Description-fr: statd utilise tcpwrapper
+ Le programme statd fonctionne avec tcpwrapper pour le contrôle d'accès.
+ Utilisez le nom de programme « statd » dans /etc/hosts.allow et
+ /etc/hosts.deny pour changer ce contrôle d'accès.
diff --git a/debian/nfs-common.templates.ru b/debian/nfs-common.templates.ru
new file mode 100644 (file)
index 0000000..bbbcae8
--- /dev/null
@@ -0,0 +1,9 @@
+Template: nfs-common/tcpwrappers-statd
+Type: note
+Description: statd uses tcpwrappers
+ The statd daemon uses tcpwrappers to control access.  To configure
+ it, use program name "statd" in /etc/hosts.allow and /etc/hosts.deny.
+Description-ru: statd ÉÓÐÏÌØÚÕÅÔ tcp-×ÒÁÐÐÅÒÙ
+ äÅÍÏΠ statd  ÉÓÐÏÌØÚÕÅÔ  tcp-×ÒÁÐÐÅÒÙ  ÄÌÑ ÕÐÒÁ×ÌÅÎÉÑ ÄÏÓÔÕÐÏÍ. þÔÏÂÙ
+ ÎÁÓÔÒÏÉÔØ  ×ÒÁÐÐÅÒ,   ÉÓÐÏÌØÚÕÊÔÅ   ÉÍÑ  ÐÒÏÇÒÁÍÍÙ  "statd"  ×  ÆÁÊÌÁÈ
+ /etc/hosts.allow É /etc/hosts.deny.
index 804d5da0fa7dba0f02a84308ee1c37933c164e85..bb8c3856f1e1089d3bc4ec9b48abf9d97067e358 100644 (file)
@@ -1 +1,2 @@
+/etc/default/nfs-kernel-server
 /etc/init.d/nfs-kernel-server
diff --git a/debian/nfs-kernel-server.default b/debian/nfs-kernel-server.default
new file mode 100644 (file)
index 0000000..4c6110b
--- /dev/null
@@ -0,0 +1,5 @@
+# Number of servers to start up
+RPCNFSDCOUNT=8
+
+# Options for rpc.mountd
+RPCMOUNTDOPTS=
index 548b5e057ffc0a78879617a3494c7a205f13cdd6..0fa19bb021280061abedbbead57381297c0d47e8 100755 (executable)
 #              which is configured via the /etc/exports file.
 #
 
+set -e
+
+# What is this?
+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
 
-# What is this?
-DESC="NFS kernel daemon"
-
-RPCNFSDCOUNT=8 # Number of servers to be started up by default
+# Read config
+DEFAULTFILE=/etc/default/nfs-kernel-server
+RPCNFSDCOUNT=8
 RPCMOUNTDOPTS=
+if [ -f $DEFAULTFILE ]; then
+    . $DEFAULTFILE
+fi
 
 # See how we were called.
 case "$1" in
@@ -79,4 +87,3 @@ case "$1" in
 esac
 
 exit 0
-
index 1f1e03995a603851761db6988c4931a955c2bf44..4bef32204ac3b4c0876eb7ec70a56f8aa675e4c1 100755 (executable)
@@ -34,4 +34,4 @@ db_stop
 
 act="restart"
 [ "$1:$2" = "configure:" ] && act="start"
-/etc/init.d/nfs-kernel-server $act
+invoke-rc.d nfs-kernel-server $act
index 9596aa20901ea1cc79ff68e5fc8b8396fce4e3f4..fb7f6324475a45b7178e11bfbc495d19aa8854b6 100644 (file)
@@ -1,10 +1,10 @@
 Template: nfs-kernel-server/sync-default
 Type: note
-Description: To comply with standards and increase data safety,
- the Linux NFS server now defaults to synchronous writes.  Since
- this is a major change, it is not silent:  All exports should be
- explicitly marked as either "sync" or "async".  Exports not so
- marked will elicit warnings.
+Description: NFS server defaults to synchronous writes
+ To comply with standards and increase data safety, the Linux NFS
+ server now defaults to synchronous writes.  Since this is a major
+ change, it is not silent: All exports should be explicitly marked as
either "sync" or "async".  Exports not so marked will elicit warnings.
 
 Template: nfs-kernel-server/tcpwrappers-mountd
 Type: note
@@ -16,19 +16,3 @@ Description: in /etc/hosts.{allow,deny}, replace "rpc.mountd" with "mountd"
  called itself "rpc.mountd".  Therefore, you should replace all
  occurrences of "rpc.mountd" with "mountd" in /etc/hosts.allow and
  /etc/hosts.deny.
-Description-de: "rpc.mountd" mit "mountd" in /etc/hosts.{allow,deny} ersetzen
- =C4ltere Versionen von nfs-kernel-server enthalten einen Mount-daemon,
- der als "rpc.mountd" bezeichnet wird. Der aktuelle Daemon wird jedoch
- nur noch "mountd" genannt.
- .
- Deshalb sollten Sie alle Referenzen zu "rpc.mountd" in den Dateien
- /etc/hosts.allow und /etc/hosts.deny mit "mountd" ersetzen.
-Description-ru: úÁÍÅÎÉÔÅ × /etc/hosts.{allow,deny} "rpc.mountd" ÎÁ "mountd"
- äÅÍÏΠ ÍÏÎÔÉÒÏ×ÁÎÉÑ  ÉÓÐÏÌØÚÕÅÔ  ÄÌÑ ÕÐÒÁ×ÌÅÎÉÑ ÄÏÓÔÕÐÏÍ tcp-×ÒÁÐÐÅÒÙ.
- þÔÏÂÙ  ÉÈ  ÎÁÓÔÒÏÉÔØ,  ÉÓÐÏÌØÚÕÊÔÅ  ÉÍÑ  "mountd"  × /etc/hosts.allow É
- /etc/hosts.deny.
- .
- âÏÌÅÅ  ÓÔÁÒÙÅ  ×ÅÒÓÉÉ  nfs-kernel-server  ×ËÌÀÞÁÌÉ ÄÅÍÏΠÍÏÎÔÉÒÏ×ÁÎÉÑ,
- ËÏÔÏÒÙÊ  ÎÁÚÙ×ÁÌ  ÓÅÂÑ  "rpc.mountd".  ðÏÜÔÏÍÕ, ×Ù ÄÏÌÖÎÙ ÚÁÍÅÎÉÔØ ×ÓÅ
- ×ÈÏÖÄÅÎÉÑ   "rpc.mountd"  ÎÁ  "mountd"  ×  ÆÁÊÌÁÈ  /etc/hosts.allow  É
- /etc/hosts.deny.
diff --git a/debian/nfs-kernel-server.templates.de b/debian/nfs-kernel-server.templates.de
new file mode 100644 (file)
index 0000000..f0e2654
--- /dev/null
@@ -0,0 +1,17 @@
+Template: nfs-kernel-server/tcpwrappers-mountd
+Type: note
+Description: in /etc/hosts.{allow,deny}, replace "rpc.mountd" with "mountd"
+ The mount daemon uses tcpwrappers to control access.  To configure
+ it, use program name "mountd" in /etc/hosts.allow and /etc/hosts.deny.
+ .
+ Older versions of nfs-kernel-server included a mount daemon that
+ called itself "rpc.mountd".  Therefore, you should replace all
+ occurrences of "rpc.mountd" with "mountd" in /etc/hosts.allow and
+ /etc/hosts.deny.
+Description-de: "rpc.mountd" mit "mountd" in /etc/hosts.{allow,deny} ersetzen
+ =C4ltere Versionen von nfs-kernel-server enthalten einen Mount-daemon,
+ der als "rpc.mountd" bezeichnet wird. Der aktuelle Daemon wird jedoch
+ nur noch "mountd" genannt.
+ .
+ Deshalb sollten Sie alle Referenzen zu "rpc.mountd" in den Dateien
+ /etc/hosts.allow und /etc/hosts.deny mit "mountd" ersetzen.
diff --git a/debian/nfs-kernel-server.templates.fr b/debian/nfs-kernel-server.templates.fr
new file mode 100644 (file)
index 0000000..77f03d3
--- /dev/null
@@ -0,0 +1,18 @@
+Template: nfs-kernel-server/tcpwrappers-mountd
+Type: note
+Description: in /etc/hosts.{allow,deny}, replace "rpc.mountd" with "mountd"
+ The mount daemon uses tcpwrappers to control access.  To configure it, use
+ program name "mount" in /etc/hosts.allow and /etc/hosts.deny.
+ .
+ Older versions of nfs-kernel-server included a mount daemon that called
+ itself "rpc.mountd".  Therefore, you should replace all occurrences of
+ "rpc.mountd" with "mountd" in /etc/hosts.allow and /etc/hosts.deny.
+Description-fr: Remplacez rpc.mountd par mountd dans /etc/hosts.{allow,deny}
+ Le programme mount fonctionne avec tcpwrapper pour le contrôle d'accès.
+ Utilisez le nom de programme « mount » dans /etc/hosts.allow et
+ /etc/hosts.deny pour changer ce contrôle d'accès.
+ .
+ Les versions précédentes de nfs-kernel-server avaient un programme
+ mount qui s'identifiait comme « rpc.mountd ». Par conséquent, vous
+ devriez remplacer partout « rpc.mountd » par « mountd » dans
+ /etc/hosts.allow et /etc/hosts.deny.
diff --git a/debian/nfs-kernel-server.templates.ru b/debian/nfs-kernel-server.templates.ru
new file mode 100644 (file)
index 0000000..ba15314
--- /dev/null
@@ -0,0 +1,19 @@
+Template: nfs-kernel-server/tcpwrappers-mountd
+Type: note
+Description: in /etc/hosts.{allow,deny}, replace "rpc.mountd" with "mountd"
+ The mount daemon uses tcpwrappers to control access.  To configure
+ it, use program name "mountd" in /etc/hosts.allow and /etc/hosts.deny.
+ .
+ Older versions of nfs-kernel-server included a mount daemon that
+ called itself "rpc.mountd".  Therefore, you should replace all
+ occurrences of "rpc.mountd" with "mountd" in /etc/hosts.allow and
+ /etc/hosts.deny.
+Description-ru: úÁÍÅÎÉÔÅ × /etc/hosts.{allow,deny} "rpc.mountd" ÎÁ "mountd"
+ äÅÍÏΠ ÍÏÎÔÉÒÏ×ÁÎÉÑ  ÉÓÐÏÌØÚÕÅÔ  ÄÌÑ ÕÐÒÁ×ÌÅÎÉÑ ÄÏÓÔÕÐÏÍ tcp-×ÒÁÐÐÅÒÙ.
+ þÔÏÂÙ  ÉÈ  ÎÁÓÔÒÏÉÔØ,  ÉÓÐÏÌØÚÕÊÔÅ  ÉÍÑ  "mountd"  × /etc/hosts.allow É
+ /etc/hosts.deny.
+ .
+ âÏÌÅÅ  ÓÔÁÒÙÅ  ×ÅÒÓÉÉ  nfs-kernel-server  ×ËÌÀÞÁÌÉ ÄÅÍÏΠÍÏÎÔÉÒÏ×ÁÎÉÑ,
+ ËÏÔÏÒÙÊ  ÎÁÚÙ×ÁÌ  ÓÅÂÑ  "rpc.mountd".  ðÏÜÔÏÍÕ, ×Ù ÄÏÌÖÎÙ ÚÁÍÅÎÉÔØ ×ÓÅ
+ ×ÈÏÖÄÅÎÉÑ   "rpc.mountd"  ÎÁ  "mountd"  ×  ÆÁÊÌÁÈ  /etc/hosts.allow  É
+ /etc/hosts.deny.