]> git.decadent.org.uk Git - nfs-utils.git/commitdiff
2001-06-15 Chip Salzenberg <chip@debian.org>
authorchip <chip>
Fri, 15 Jun 2001 23:08:35 +0000 (23:08 +0000)
committerchip <chip>
Fri, 15 Jun 2001 23:08:35 +0000 (23:08 +0000)
* debian/changelog: Version 0.3.2-2.
* debian/*.init: Minor fixes.

ChangeLog
debian/changelog
debian/nfs-common.init
debian/nfs-kernel-server.init

index 5cff8ab7ceafcc7641c1174ded6403513b1c6b04..423178ad4f3f28517ff22ead6ba687d1ffa7ad7e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-06-15  Chip Salzenberg  <chip@debian.org>
+
+       * debian/changelog: Version 0.3.2-2.
+       * debian/*.init: Minor fixes.
+
 2001-06-07  Lon H. Hohberger <hohberger@missioncriticallinux.com>
 
        * etc/nodist/nfs-server: Fixed a bug where the script would
index ecb9197958107020746d51438d42951d8a08e895..6909446674f6a6612d486191d5d68bd2db18c775 100644 (file)
@@ -1,3 +1,11 @@
+nfs-utils (1:0.3.2-2) unstable; urgency=low
+
+  * Rebuild with new libc.  (closes: #97252, #97455, #99829, #100317)
+  * Fix typo in nfs-kernel-server init script.  (closes: #100380)
+  * Start all daemons in root directory.
+  
+ -- Chip Salzenberg <chip@debian.org>  Fri, 15 Jun 2001 15:57:18 -0700
+
 nfs-utils (1:0.3.2-1) unstable; urgency=low
 
   * Upstream changes to statd:
index 63bc29c4d138ba51887c66c1b7fac498ab8bdb89..78edad134214dc75313490e179067785ccb0301d 100755 (executable)
@@ -25,12 +25,10 @@ fi
 # What is this?
 DESC="NFS common utilities"
 
-# Make sure that daemon cwds are in root fs.
-cd /
-
 # 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 \
index 1626213119b2c6af24c9922e97a93ec2d1c2feab..e95586b21269023c871dc9741ac429429f22fb42 100755 (executable)
@@ -21,12 +21,10 @@ DESC="NFS kernel daemon"
 RPCNFSDCOUNT=8 # Number of servers to be started up by default
 RPCMOUNTDOPTS=
 
-# Make sure that daemon cwds are in root fs.
-cd /
-
 # See how we were called.
 case "$1" in
   start)
+       cd /    # daemons should have root dir as cwd
        if grep -q '^/' /etc/exports; then
                printf "Exporting directories for $DESC..."
                $PREFIX/sbin/exportfs -r
@@ -38,7 +36,7 @@ case "$1" in
                    --exec $PREFIX/sbin/rpc.nfsd -- $RPCNFSDCOUNT
                printf " mountd"
                $PREFIX/bin/rpcinfo -u localhost nfs 3 > /dev/null 2>&1 ||
-                   RPCMOUNTDOPTS="$RPCMOUNDOPTS --no-nfs-version 3"
+                   RPCMOUNTDOPTS="$RPCMOUNTDOPTS --no-nfs-version 3"
                start-stop-daemon --start --quiet \
                    --exec $PREFIX/sbin/rpc.mountd -- $RPCMOUNTDOPTS
                echo "."