]> git.decadent.org.uk Git - nfs-utils.git/commitdiff
Imported Debian patch 1.1.0-11 debian/1%1.1.0-11
authorSteinar H. Gunderson <sesse@debian.org>
Wed, 18 Jul 2007 17:04:44 +0000 (19:04 +0200)
committerBen Hutchings <ben@decadent.org.uk>
Wed, 14 Jul 2010 01:53:14 +0000 (02:53 +0100)
debian/changelog
debian/control
debian/nfs-common.manpages
debian/patches/05-ignore-quota-option.patch [new file with mode: 0644]
debian/patches/series

index 4af72d3fddf0e2741a6ef357afee2294b48e5d50..ff701b5fb2819df38d8baa798e614e13e04f6cce 100644 (file)
@@ -1,3 +1,15 @@
+nfs-utils (1:1.1.0-11) unstable; urgency=low
+
+  * Include the nfs man page, which was also forgotten. The new nfs man page
+    fixes a few documentation bugs over the old one from util-linux:
+    * TCP is now the default if supported. (Closes: #414160)
+    * The default NFS version is now 3. (Closes: #289436)
+  * Add a replaces on pre-2.13 mount, since nfs(5) used to be there.
+  * 05-ignore-quota-option.patch: Properly ignore quota options in fstab.
+    (Closes: #329417)
+
+ -- Steinar H. Gunderson <sesse@debian.org>  Wed, 18 Jul 2007 19:04:44 +0200
+
 nfs-utils (1:1.1.0-10) unstable; urgency=high
 
   * Start nfs-common in the /etc/rcS start-up sequence, making sure statd is
 nfs-utils (1:1.1.0-10) unstable; urgency=high
 
   * Start nfs-common in the /etc/rcS start-up sequence, making sure statd is
index 503e73ff9645d95ade6015774e9d1c24e0ef421d..83439eca37d9186c92a9388347237c177ce90a0d 100644 (file)
@@ -36,7 +36,7 @@ Architecture: any
 Depends: portmap | rpcbind, adduser, ucf, lsb-base (>= 1.3-9ubuntu3), netbase (>= 4.24), ${shlibs:Depends}
 Provides: nfs-client
 Conflicts: nfs-client
 Depends: portmap | rpcbind, adduser, ucf, lsb-base (>= 1.3-9ubuntu3), netbase (>= 4.24), ${shlibs:Depends}
 Provides: nfs-client
 Conflicts: nfs-client
-Replaces: nfs-client, nfs-kernel-server (<< 1:1.0.7-5)
+Replaces: nfs-client, nfs-kernel-server (<< 1:1.0.7-5), mount (<< 2.13~)
 Description: NFS support files common to client and server
  Use this package on any machine that uses NFS, either as client or
  server.  Programs included: lockd, statd, showmount, nfsstat, gssd
 Description: NFS support files common to client and server
  Use this package on any machine that uses NFS, either as client or
  server.  Programs included: lockd, statd, showmount, nfsstat, gssd
index 78432871df18eec52ac010ac35dc5af74bc743ab..2fd641d850019a74ca2ae9cb6eec84302678105e 100644 (file)
@@ -1,4 +1,5 @@
 debian/tmp/usr/share/man/man5/idmapd.conf*
 debian/tmp/usr/share/man/man5/idmapd.conf*
+debian/tmp/usr/share/man/man5/nfs.5
 debian/tmp/usr/share/man/man8/gssd.8
 debian/tmp/usr/share/man/man8/idmapd.8
 debian/tmp/usr/share/man/man8/statd.8
 debian/tmp/usr/share/man/man8/gssd.8
 debian/tmp/usr/share/man/man8/idmapd.8
 debian/tmp/usr/share/man/man8/statd.8
diff --git a/debian/patches/05-ignore-quota-option.patch b/debian/patches/05-ignore-quota-option.patch
new file mode 100644 (file)
index 0000000..2985938
--- /dev/null
@@ -0,0 +1,22 @@
+The mount(5) man page states that the noquota, quota, usrquota and
+grpquota options are ignored. (They are, however, used by the quota
+tools, so having them in fstab can be useful.) Make mount.nfs ignore
+them properly, matching the man page. There are a few aliases (like
+usrjquota) that are parsed by quota, but as these are not documented
+nor seem to be widely used, they are not included.
+
+Index: nfs-utils-1.1.0/utils/mount/mount.c
+===================================================================
+--- nfs-utils-1.1.0.orig/utils/mount/mount.c
++++ nfs-utils-1.1.0/utils/mount/mount.c
+@@ -132,6 +132,10 @@ static const struct opt_map opt_map[] = 
+   { "diratime", 0, 1, MS_NODIRATIME },  /* Update dir access times */
+   { "nodiratime", 0, 0, MS_NODIRATIME },/* Do not update dir access times */
+ #endif
++  { "noquota", 0, 0, MS_DUMMY },        /* Don't enforce quota */
++  { "quota", 0, 0, MS_DUMMY },          /* Enforce user quota */
++  { "usrquota", 0, 0, MS_DUMMY },       /* Enforce user quota */
++  { "grpquota", 0, 0, MS_DUMMY },       /* Enforce group quota */
+   { NULL,     0, 0, 0         }
+ };
index cb97c491ca8cf35dac20260e553e565cef0e1a7c..ae6f898e6837821953cff10abde2798a158c97d9 100644 (file)
@@ -1,3 +1,4 @@
+05-ignore-quota-option.patch
 04-umount-exit-status.patch
 03-sm-notify-in-sbin.patch
 01-fix-hostent-memory-leak.diff
 04-umount-exit-status.patch
 03-sm-notify-in-sbin.patch
 01-fix-hostent-memory-leak.diff