]> git.decadent.org.uk Git - nfs-utils.git/commitdiff
Imported Debian patch 1.0.7-10 debian/1%1.0.7-10
authorSteinar H. Gunderson <sesse@debian.org>
Wed, 26 Apr 2006 22:32:27 +0000 (00:32 +0200)
committerBen Hutchings <ben@decadent.org.uk>
Tue, 13 Jul 2010 03:04:37 +0000 (04:04 +0100)
confdefs.h [new file with mode: 0644]
debian/changelog
debian/control
debian/nfs-common.default
debian/nfs-common.postinst
debian/nfs-common.prerm
debian/nfs-kernel-server.prerm

diff --git a/confdefs.h b/confdefs.h
new file mode 100644 (file)
index 0000000..0010349
--- /dev/null
@@ -0,0 +1,4 @@
+
+#define NFS3_SUPPORTED 1
+#define NFS4_SUPPORTED 1
+#define GSS_SUPPORTED 1
index 5b74a341c8c394f0fa538bb62fba99e434e4a693..57ad8c2e52e8772060a973f9031afbe22b6c8675 100644 (file)
@@ -1,3 +1,20 @@
+nfs-utils (1:1.0.7-10) unstable; urgency=low
+
+  * Intermediate 1.0.7 release, waiting for librpcsecgss to be uploaded into
+    Debian so we can upload 1.0.8.
+  * Clarify what the NEED_* options in /etc/default/nfs-common mean.
+    (Closes: #364625)
+  * Make /var/lib/nfs/{sm,sm.bak,state,rpc_pipefs} be owned by a new "statd"
+    user (created in postinst), causing rpc.statd to be run as that user
+    instead of root. (Closes: #240689)
+    * Make nfs-common depend on adduser.
+  * Clear out obsolete (pre-sarge) debconf and rc.d purging from postinst
+    script.
+  * Use invoke-rc.d in nfs-common and nfs-kernel-server prerms instead of
+    calling the /etc/init.d script directly; fixes two lintian warnings.
+
+ -- Steinar H. Gunderson <sesse@debian.org>  Thu, 27 Apr 2006 00:32:27 +0200
+
 nfs-utils (1:1.0.7-9) unstable; urgency=low
 
   * When checking for nfsd support in the kernel, check for init_nfsd
index d4283b9b606870af79e2a6c7818db63789fa0b67..e7f80f946044377fd856fa2f055ce37ba68ac2da 100644 (file)
@@ -25,7 +25,7 @@ Description: Kernel NFS server support
 
 Package: nfs-common
 Architecture: any
-Depends: portmap, sysvinit (>= 2.80-1), ${shlibs:Depends}
+Depends: portmap, sysvinit (>= 2.80-1), adduser, ${shlibs:Depends}
 Provides: nfs-client
 Conflicts: nfs-client
 Replaces: nfs-client, nfs-kernel-server (<< 1:1.0.7-5)
index 0a5e8b23f336db888430f826832a66a1aba49cc3..89f99804772b0861411cfb466efecbc07ec6a0ee 100644 (file)
@@ -7,14 +7,12 @@
 #   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".
+# Some kernels need a separate lockd daemon; most don't. Set this if you
+# want to force an explicit choice for some reason.
 NEED_LOCKD=
 
-# If you are not using NFSv4 and wish to disable the idmapd daemon,
-# then set NEED_IDMAPD to "no". 
+# Do you want to start the idmapd daemon? It is only needed for NFSv4.
 NEED_IDMAPD=
 
-# If you are not running NFS with RPCSEC_GSS security, and wish to
-# disable the gssd client daemon, then set NEED_GSSD to "no".
+# Do you want to start the gssd daemon? It is required for Kerberos mounts.
 NEED_GSSD=
index 5af4731e87791e704755457a4882f7731bcfb80c..8648d038d57245fdd7bedee47bca99ad7227b4d6 100755 (executable)
@@ -4,22 +4,18 @@
 
 case "$1" in
     configure)
-       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 2>&1 || true
-       fi
        update-rc.d nfs-common defaults 21 79 >/dev/null
 
-       # Remove obsolete debconf questions
-       if [ -e /usr/share/debconf/confmodule ]; then
-           . /usr/share/debconf/confmodule
-           db_unregister nfs-common/tcpwrappers-statd || true
-           db_stop
+       if ! getent passwd statd >/dev/null; then
+           adduser --system statd
+       fi
+       if [ "$2" = "" ] || dpkg --compare-versions "$2" lt 1.0.7-10; then
+           chown statd /var/lib/nfs/sm \
+               /var/lib/nfs/sm.bak \
+               /var/lib/nfs/state \
+               /var/lib/nfs/rpc_pipefs
        fi
-       ;;
+    ;;
 esac
 
 act="restart"
index b49a2b4d51ffac3e02364d88ffb4545286c1e8c8..c3c15ba3ec2dd655dbb00027331550894792f934 100755 (executable)
@@ -5,7 +5,7 @@
 case "$1" in
     remove|purge)
        [ -x /etc/init.d/nfs-common ] &&
-          /etc/init.d/nfs-common stop
+           invoke-rc.d nfs-common stop
        ;;
 esac
 
index d82bd10b34c71787fff13bc3204145ece00bad65..80878e6687cff79ec785dea865171e89163f1e52 100755 (executable)
@@ -5,7 +5,7 @@
 case "$1" in
     remove|purge)
        [ -x /etc/init.d/nfs-kernel-server ] &&
-          /etc/init.d/nfs-kernel-server stop
+           invoke-rc.d nfs-kernel-server stop
        ;;
 esac