packages: nfs-utils/nfs-utils-heimdal_functions.patch, nfs-utils/nfs-utils-...

baggins baggins at pld-linux.org
Mon Aug 30 14:15:37 CEST 2010


Author: baggins                      Date: Mon Aug 30 12:15:37 2010 GMT
Module: packages                      Tag: HEAD
---- Log message:
- git patch with nfs-utils-1-2-3-rc4 changes
- real ipv6 support in nfsd and mountd
- support for more krb5 enctypes (AES, ARCFOUR, etc., req kernel 2.6.35+),
  at last no more DES!

---- Files affected:
packages/nfs-utils:
   nfs-utils-heimdal_functions.patch (1.3 -> 1.4) , nfs-utils-no_libgssapi.patch (1.2 -> 1.3) , nfs-utils.spec (1.186 -> 1.187) , nfs-utils-git.patch (NONE -> 1.1)  (NEW)

---- Diffs:

================================================================
Index: packages/nfs-utils/nfs-utils-heimdal_functions.patch
diff -u packages/nfs-utils/nfs-utils-heimdal_functions.patch:1.3 packages/nfs-utils/nfs-utils-heimdal_functions.patch:1.4
--- packages/nfs-utils/nfs-utils-heimdal_functions.patch:1.3	Wed Jul  1 23:11:37 2009
+++ packages/nfs-utils/nfs-utils-heimdal_functions.patch	Mon Aug 30 14:15:32 2010
@@ -1,5 +1,15 @@
 --- utils/gssd/krb5_util.c	2008-10-17 14:20:09.000000000 +0000
 +++ utils/gssd/krb5_util.c	2008-11-22 13:52:42.000000000 +0000
+@@ -115,9 +115,7 @@
+ #include <errno.h>
+ #include <time.h>
+ #include <gssapi/gssapi.h>
+-#ifdef USE_PRIVATE_KRB5_FUNCTIONS
+ #include <gssapi/gssapi_krb5.h>
+-#endif
+ #include <krb5.h>
+ #include <rpc/auth_gss.h>
+ 
 @@ -927,9 +927,37 @@ 
  {
  	krb5_error_code ret;
@@ -9,14 +19,14 @@
  
 +#ifdef HAVE_HEIMDAL
 +	krb5_creds pattern;
-+	krb5_realm *client_realm;
++	krb5_const_realm client_realm;
 +
 +	krb5_cc_clear_mcred(&pattern);
 +
-+	client_realm = krb5_princ_realm (context, principal);
++	client_realm = krb5_principal_get_realm (context, principal);
 +
 +	ret = krb5_make_principal (context, &pattern.server,
-+				   *client_realm, KRB5_TGS_NAME, *client_realm,
++				   client_realm, KRB5_TGS_NAME, client_realm,
 +				   NULL);
 +	if (ret)
 +	  krb5_err (context, 1, ret, "krb5_make_principal");
@@ -57,15 +67,3 @@
  	krb5_cc_set_flags(context, ccache,  KRB5_TC_OPENCLOSE);
  	krb5_cc_close(context, ccache);
  err_cache:
-@@ -1262,7 +1294,11 @@
- 	if (context != NULL) {
- 		origmsg = krb5_get_error_message(context, code);
- 		msg = strdup(origmsg);
-+#ifdef HAVE_HEIMDAL
-+		krb5_free_error_string(context, origmsg);
-+#else
- 		krb5_free_error_message(context, origmsg);
-+#endif
- 	}
- #endif
- 	if (msg != NULL)

================================================================
Index: packages/nfs-utils/nfs-utils-no_libgssapi.patch
diff -u packages/nfs-utils/nfs-utils-no_libgssapi.patch:1.2 packages/nfs-utils/nfs-utils-no_libgssapi.patch:1.3
--- packages/nfs-utils/nfs-utils-no_libgssapi.patch:1.2	Wed Jul  1 14:27:55 2009
+++ packages/nfs-utils/nfs-utils-no_libgssapi.patch	Mon Aug 30 14:15:32 2010
@@ -16,7 +16,7 @@
 @@ -171,10 +173,10 @@ serialize_krb5_ctx(gss_ctx_id_t ctx, gss
  	int retcode = 0;
  
- 	printerr(2, "DEBUG: serialize_krb5_ctx: lucid version!\n");
+ 	printerr(2, "DEBUG: %s: lucid version!\n", __FUNCTION__);
 -	maj_stat = gss_export_lucid_sec_context(&min_stat, &ctx,
 +	maj_stat = gss_krb5_export_lucid_sec_context(&min_stat, &ctx,
  						1, &return_ctx);
@@ -42,13 +42,20 @@
 ===================================================================
 --- nfs-utils-1.1.0.orig/utils/gssd/krb5_util.c
 +++ nfs-utils-1.1.0/utils/gssd/krb5_util.c
-@@ -294,10 +294,10 @@ limit_krb5_enctypes(struct rpc_gss_sec *
- 		return -1;
- 	}
+@@ -1317,13 +1317,13 @@ limit_krb5_enctypes(struct rpc_gss_sec *
+ 	 * list of supported enctypes, use local default here.
+ 	 */
+ 	if (krb5_enctypes == NULL)
+-		maj_stat = gss_set_allowable_enctypes(&min_stat, credh,
+-					&krb5oid, num_enctypes, enctypes);
++		maj_stat = gss_krb5_set_allowable_enctypes(&min_stat, credh,
++					num_enctypes, enctypes);
+ 	else
+-		maj_stat = gss_set_allowable_enctypes(&min_stat, credh,
+-					&krb5oid, num_krb5_enctypes, krb5_enctypes);
++		maj_stat = gss_krb5_set_allowable_enctypes(&min_stat, credh,
++					num_krb5_enctypes, krb5_enctypes);
  
--	maj_stat = gss_set_allowable_enctypes(&min_stat, credh, &krb5oid,
-+	maj_stat = gss_krb5_set_allowable_enctypes(&min_stat, credh,
- 					     num_enctypes, &enctypes);
  	if (maj_stat != GSS_S_COMPLETE) {
 -		pgsserr("gss_set_allowable_enctypes",
 +		pgsserr("gss_krb5_set_allowable_enctypes",

================================================================
Index: packages/nfs-utils/nfs-utils.spec
diff -u packages/nfs-utils/nfs-utils.spec:1.186 packages/nfs-utils/nfs-utils.spec:1.187
--- packages/nfs-utils/nfs-utils.spec:1.186	Wed Aug 18 07:19:32 2010
+++ packages/nfs-utils/nfs-utils.spec	Mon Aug 30 14:15:32 2010
@@ -14,7 +14,7 @@
 Summary(uk.UTF-8):	Утиліти для NFS та демони підтримки для NFS-сервера ядра
 Name:		nfs-utils
 Version:	1.2.2
-Release:	2
+Release:	2.3
 License:	GPL v2
 Group:		Networking/Daemons
 Source0:	http://www.kernel.org/pub/linux/utils/nfs/%{name}-%{version}.tar.bz2
@@ -39,6 +39,7 @@
 Patch5:		%{name}-no_libgssapi.patch
 Patch6:		%{name}-pkgconfig_ac.patch
 Patch7:		%{name}-heimdal_functions.patch
+Patch100:	%{name}-git.patch
 URL:		http://nfs.sourceforge.net/
 BuildRequires:	autoconf >= 2.59
 BuildRequires:	automake
@@ -169,6 +170,7 @@
 
 %prep
 %setup -q -a1
+%patch100 -p1
 %patch0 -p1
 %patch1 -p1
 %patch2 -p1
@@ -385,11 +387,15 @@
 %attr(4755,root,root) /sbin/umount.nfs
 %attr(4755,root,root) /sbin/mount.nfs4
 %attr(4755,root,root) /sbin/umount.nfs4
+%attr(755,root,root) %{_sbindir}/mountstats
+%attr(755,root,root) %{_sbindir}/nfsiostat
 %attr(755,root,root) %{_sbindir}/showmount
 %attr(755,root,root) %{_sbindir}/rpc.gssd
 %attr(754,root,root) /etc/rc.d/init.d/gssd
 %{_mandir}/man8/gssd.8*
 %{_mandir}/man8/mount.nfs.8*
+%{_mandir}/man8/mountstats.8*
+%{_mandir}/man8/nfsiostat.8*
 %{_mandir}/man8/rpc.gssd.8*
 %{_mandir}/man8/showmount.8*
 %{_mandir}/man8/umount.nfs.8*
@@ -413,6 +419,12 @@
 All persons listed below can be reached at <cvs_login>@pld-linux.org
 
 $Log$
+Revision 1.187  2010/08/30 12:15:32  baggins
+- git patch with nfs-utils-1-2-3-rc4 changes
+- real ipv6 support in nfsd and mountd
+- support for more krb5 enctypes (AES, ARCFOUR, etc., req kernel 2.6.35+),
+  at last no more DES!
+
 Revision 1.186  2010/08/18 05:19:32  qboosh
 - updated pkgconfig_ac patch, dropped now unnecessary BC for libgssglue
 - files cleanup
@@ -560,540 +572,3 @@
 
 Revision 1.147  2007/05/11 11:35:09  baggins
 - 1.1.0 final
-
-Revision 1.146  2007/05/08 17:12:47  baggins
-- updated to 1.1.0-rc2
-- disabled CITI patch, it does give only bleeding edge experimental stuff
-  and we don't have the kernel part of it
-
-Revision 1.145  2007/04/26 17:00:43  baggins
-- R: rc-scripts >= 0.4.1.5 for check_portmapper function
-
-Revision 1.144  2007/04/06 10:04:43  baggins
-- little typo
-
-Revision 1.143  2007/04/06 09:40:46  baggins
-- update/clean TODO
-- updated CITI and fake patches
-- removed bash from scripts
-- added proper start-statd script
-- consistent service messages
-- cleaned up init scripts
-- updated triggers
-
-Revision 1.142  2007/04/04 23:23:28  baggins
-- started update to 1.1.0-rc1
-- killed obsolete patches and hacks
-- (rpc.)lockd is gone (wasn't really doing anything)
-
-Revision 1.141  2007/03/31 21:56:10  baggins
-- consistent subsys locking with mount.nfs4 and rc-scripts
-
-Revision 1.140  2007/03/30 23:46:01  baggins
-- unify krb5.keytab path krb5
-
-Revision 1.139  2007/03/30 23:41:11  baggins
-- Death to heimdal!
-- switched to MIT kerberos because it Just Works (krb5 mounts and exports)
-
-Revision 1.138  2007/03/26 13:33:40  baggins
-- revert previous change, I know what I'm doing
-
-Revision 1.137  2007/03/26 13:18:49  glen
-- correct trigger version
-
-Revision 1.136  2007/03/25 22:35:22  baggins
-- rel 8
-- change nfs checkconfig priorities as mountd must be started before idmapd
-- updated trigger
-
-Revision 1.135  2007/03/22 13:47:46  baggins
-- rel 7
-- use MOUNTD_PORT in nfs.init
-- fixed Fedora patch for fake mount
-
-Revision 1.134  2007/03/21 14:10:08  baggins
-- looks good, release 6
-
-Revision 1.133  2007/03/21 13:44:06  baggins
-- fixed bugs in initscripts
-- sync idmapd.conf with libnfsidmap
-
-Revision 1.132  2007/03/21 00:55:36  baggins
-- final quota touch
-
-Revision 1.131  2007/03/21 00:53:32  baggins
-- typos
-- kill rquotad - we don't use it since 2002 (5 years!)
-
-Revision 1.130  2007/03/21 00:39:50  baggins
-- added post/preun scripts for new services
-
-Revision 1.129  2007/03/20 18:36:19  baggins
-- build mount.nfs (with bcond)
-- add special user for rpc.statd
-- move statd stuff to /var/lib/nfs/statd
-- reset chkconfig levels on upgrade (trigger)
-- added bugfixes from fedora
-- added initscripts for NFSv4 damons
-
-Revision 1.128  2007/03/19 18:42:53  baggins
-- revert previous change, it's pointles as those daemons are linke with
-  too many libraries from /usr/lib
-- mount nfs and nfs4 filesystems separately in nfsfs.init
-
-Revision 1.127  2007/03/19 17:29:37  baggins
-- rel 5
-- move NFSv4 client daemons to /sbin in case of /usr over NFSv4
-
-Revision 1.126  2007/03/19 14:53:41  baggins
-- rel 4
-- fixed mem leak in mountd
-- BR: e2fsprogs-devel that do not leak
-
-Revision 1.125  2007/03/18 21:58:36  baggins
-- rel 3
-- fixed nfsfs init script
-
-Revision 1.124  2007/03/14 18:16:41  baggins
-- BR cpp (yes it's really required, and yes this BR is needed)
-
-Revision 1.123  2007/03/14 17:42:51  baggins
-- BR e2fsprogs-devel (libblkid)
-
-Revision 1.122  2007/03/14 14:29:47  baggins
-- rel 2
-- cleaned up init.d scripts
-
-Revision 1.121  2007/03/11 00:07:19  qboosh
-- updated to 1.0.12
-- updated heimdal,heimdal-internals patches
-- updated CITI_NFS4 patch based on patch for 1.0.11
-- removed obsolete nolibs patch
-- nhfs* utils are gone
-
-Revision 1.120  2007/03/09 11:22:27  arekm
-- rel 8
-
-Revision 1.119  2007/02/22 13:21:36  arekm
-- rel 7; rebuild
-
-Revision 1.118  2007/02/13 07:16:49  glen
-- tabs in preamble
-
-Revision 1.117  2007/02/12 00:49:13  baggins
-- converted to UTF-8
-
-Revision 1.116  2006/11/02 10:57:26  wiget
-- rebuild with libevent 1.2
-
-Revision 1.115  2006/10/19 10:30:06  glen
-- rel 6
-
-Revision 1.114  2006/10/13 07:08:20  glen
-- rel 5
-
-Revision 1.113  2006/10/02 20:01:21  glen
-- rel 4
-
-Revision 1.112  2006/09/24 09:49:59  kosmo
-- added missing br: libtool,
-- enabled tcp_wrappers usage,
-  (older releases were not linked with libwrap and /etc/tcpd/hosts.* were not used)
-- SECURITY STBR !
-
-Revision 1.111  2006/08/30 11:58:44  glen
-- unify nfsfs service syconfig file for %service usage
-- fix install re-entrancy
-- rel 2
-
-Revision 1.110  2006/08/21 20:52:31  glen
-- rel 1
-
-Revision 1.109  2006/08/16 19:26:34  qboosh
-- updated to 1.0.10, updated CITI patch
-
-Revision 1.108  2006/07/18 12:04:11  qboosh
-- updated to 1.0.9, updated heimdal and CITI patches
-
-Revision 1.107  2006/06/11 19:42:54  areq
-- no patch URL
-
-Revision 1.106  2006/06/10 23:59:28  areq
-- update NFS4
-
-Revision 1.105  2006/05/15 18:20:38  qboosh
-- removed obsolete time patch
-
-Revision 1.104  2006/05/13 13:01:29  qboosh
-- BR: librpcsecgss-devel with fixed .pc file
-
-Revision 1.103  2006/05/08 15:55:38  baggins
-- merge from AC-branch with CITI patch
-
-Revision 1.102  2006/05/04 20:57:26  wiget
-- rebuild with libevent 1.1a
-- release 5
-
-Revision 1.101  2006/03/27 08:32:09  qboosh
-- sorted BRs
-
-Revision 1.100  2006/03/26 18:13:52  areq
-- BuildRequires: libnfsidmap-devel
-
-Revision 1.99  2006/03/05 15:20:15  glen
-- use %service, adapterized, cosmetics
-
-Revision 1.98  2005/11/09 20:48:06  glen
-- add todo: /proc/fs/nfsd is left mounted when package is erased
-
-Revision 1.97  2005/09/22 15:17:29  arekm
-- add v4recovery (nfs state recovery directory)
-
-Revision 1.96  2005/08/09 17:11:04  areq
-- add rquotad-curblocks.patch (LINUX_QUOTA_VERSION 2 support)
-
-Revision 1.95  2005/07/10 10:16:12  arekm
-- add hack for heimdal 0.7 (expose internal struct)
-
-Revision 1.94  2005/07/06 19:39:39  arekm
-- br heimdal >= 0.7
-
-Revision 1.93  2005/05/27 14:10:37  arekm
-- move /var/lib/nfs to common package
-
-Revision 1.92  2005/05/27 13:26:31  arekm
-- new common subpackage used by clients and servers
-
-Revision 1.91  2005/05/26 22:29:28  arekm
-- future nfs4 work (buils properly)
-
-Revision 1.90  2005/05/23 12:23:26  qboosh
-- more idmap stuff bconded
-
-Revision 1.89  2005/05/23 12:16:01  qboosh
-- added nfs4 bcond
-
-Revision 1.88  2005/02/27 21:50:53  arekm
-- enable gss and nfs4
-
-Revision 1.87  2004/12/22 14:10:27  hawk
-- oops
-
-Revision 1.86  2004/12/22 13:59:10  hawk
-- release 2 (1 for RA)
-
-Revision 1.85  2004/12/22 12:53:06  qboosh
-- updated to 1.0.7, updated nolibs,usn36 patches
-- disable NFSv4 and Kerberos for now (unmet deps)
-
-Revision 1.84  2004/12/14 14:22:27  qboosh
-- rc-scripts >= 0.4.0 needed (kernelverser function)
-
-Revision 1.83  2004/12/14 07:25:43  adamg
-- usn36.patch added (CAN-2004-1014)
-- release 10
-
-Revision 1.82  2004/12/05 01:28:40  glen
-- do not disable nfsv3; rel 9; STBR
-
-Revision 1.81  2004/10/21 14:14:28  djurban
-- samba rel 4, kdelibs 2, nfs-utils 8
-- Prereq setup .6-7 sent to ac
-
-Revision 1.80  2004/10/19 19:01:00  qboosh
-- PreReq for setup
-
-Revision 1.79  2004/10/19 18:08:39  djurban
-- fileshare instead of samba stbring
-
-Revision 1.78  2004/10/19 16:47:05  djurban
-- one more config file with samba group (maybe it should be called filesharing? thats irrelevant anyway)
-
-Revision 1.77  2004/09/07 20:13:47  twittner
-- allow to pass options to rpc.statd via STATDOPTS in /etc/sysconfig/nfslock
-- rel. 6
-
-Revision 1.76  2004/09/05 22:23:56  arekm
-- rel 5; add mounting of /proc/fs/nfsd
-
-Revision 1.75  2004/06/19 21:54:27  averne
-- rel 4 for rebuild in Ac
-
-Revision 1.74  2004/06/05 22:01:29  arekm
-- fsck.nfs moved to nfs-utils
-
-Revision 1.73  2004/03/26 21:55:00  ankry
-- rel. 3 for Ac (2 is for Ra)
-
-Revision 1.72  2003/10/07 08:57:14  areq
-- 1.0.6
-
-Revision 1.71  2003/08/26 17:00:29  baggins
-- release 2.1
-- /var/lib/nfs/state belongs to lock package, but what to do with
-  /var/lib/nfs dir now?
-
-Revision 1.70  2003/08/12 08:15:05  qboosh
-- URL
-
-Revision 1.69  2003/08/11 19:14:24  qboosh
-- added nolibs patch to avoid unnecessary -lnsl
-- typos, release 2
-
-Revision 1.68  2003/07/28 22:39:10  blues
-- cosmetics
-
-Revision 1.67  2003/07/22 17:07:24  adamg
-- updated to 1.0.5
-- removed obsolete -use-after-free.patch
-- added missing nhfs{graph,nums,run} binaries and manpages
-- added missing /var/lib/nfs/state
-- added missing nfsd.7 manpage
-
-Revision 1.66  2003/07/14 19:16:23  baggins
-- release 2
-- Trond should be much more careful what he's doing
-
-Revision 1.65  2003/07/14 17:31:17  baggins
-- added install patch (don't play with chown, chmod)
-
-Revision 1.64  2003/07/14 17:24:33  baggins
-- secfix patch no longer needed
-
-Revision 1.63  2003/07/14 17:16:37  baggins
-- version 1.0.4
-- SECURITY UPGRADE
-
-Revision 1.62  2003/07/14 16:56:59  misi3k
-- rel 2
-- added security patch
-  BUG(redhat RHSA-2003:206-01):
-    buffer overflow bug in nfs-utils version 1.0.3
-    and earlier.  This bug could be exploited by an attacker,
-    causing a remote Denial of Service (crash).
-    It is not believed that this bug could lead to remote arbitrary code execution.
-
-Revision 1.61  2003/06/13 10:17:17  misi3k
-- Source0 cosmetics
-
-Revision 1.60  2003/05/28 12:59:53  malekith
-- massive attack: source-md5
-
-Revision 1.59  2003/05/25 05:51:10  misi3k
-- massive attack s/pld.org.pl/pld-linux.org/
-
-Revision 1.58  2003/03/28 14:58:36  areq
-- 1.0.3
-
-Revision 1.57  2003/02/28 10:08:03  trojan
-- massive attack: perl -pi -e "s/^#+\%\{/#\%\%\{/"
-
-Revision 1.56  2003/01/18 20:16:55  qboosh
-- up to 1.0.1
-- more specific Requires, use umask before sed, added missing nhfsstone(8) man
-
-Revision 1.55  2002/10/11 08:54:24  wojrus
-- little fix in nfsfs.spec
-- rel 9, STBR
-
-Revision 1.54  2002/09/06 18:34:02  blues
--  release 8 - new doc, removed duplicate directory ownerships. STBR
-
-Revision 1.53  2002/05/27 12:03:41  baggins
-- release 7
-- we don't want rquotad from this package - it sux0rz
-
-Revision 1.52  2002/05/21 23:14:14  kloczek
-- perl -pi -e "s/^automake -a -c -f --foreing/\%\{__automake\}/; \
-             s/^automake -a -c -f/\%\{__automake\}/; \
-     s/^autoconf/\%\{__autoconf\}/"
-
-Revision 1.51  2002/05/04 20:06:17  kloczek
-- release 6,
-- fix restart target in nfs server init script (hanging clints on restart server),
-- merge translations from KSI.
-
-Revision 1.50  2002/02/22 23:29:19  kloczek
-- removed all Group fields translations (oure rpm now can handle translating
-  Group field using gettext).
-
-Revision 1.49  2002/02/06 17:16:27  blues
-- release 5
-- fixed broken init script
-  STB
-
-Revision 1.48  2002/01/25 22:19:31  blues
-- release 4
-- rebuild with corrected nfsfs init script
-  STB
-
-Revision 1.47  2002/01/18 02:14:02  kloczek
-- perl -pi -e "s/pld-list\@pld.org.pl/feedback\@pld.org.pl/"
-
-Revision 1.46  2001/12/24 23:11:22  qboosh
-- added lock checking in nfslock and rquotad init scripts
-  (nfsfs doesn't require it)
-- release 3
-
-Revision 1.45  2001/12/08 16:45:51  kloczek
-- release 2,
-- merge translations from Conectiva.
-
-Revision 1.44  2001/11/30 23:10:19  qboosh
-- adapterized, typos, cosmetics
-- check locks in nfs.init start/stop (TODO: the same in nfsfs,nfslock,rquotad)
-
-Revision 1.43  2001/11/17 18:52:39  areq
-- 0.3.3
-- remove nfs-utils-cwd.patch
-
-Revision 1.42  2001/11/05 14:55:50  rrw
-- requires psmisc in clients package (for fuser in nfsfs.init);
-- release 11;
-
-Revision 1.41  2001/09/25 09:27:15  qboosh
-- release 10: added Prereq: /sbin/chkconfig to all subpackages
-
-Revision 1.40  2001/07/26 05:42:22  saq
-- reverting last change: removing new macros from %p{re,ost}{,un}
-
-Revision 1.38  2001/07/24 15:13:03  blues
-- ac 2.5 ready
-- traslations corrected
-
-Revision 1.37  2001/06/15 16:04:47  baggins
-- prereq rc-scripts
-- release 4
-
-Revision 1.36  2001/05/28 22:14:12  kloczek
-- release 8.
-
-Revision 1.35  2001/05/28 17:17:30  klakier
-- added cwd.patch got from maintainer (change cwd to statedir)
-
-Revision 1.34  2001/03/11 14:50:18  kloczek
-- merge eepro-support rawhide patch.
-
-Revision 1.33  2001/03/11 14:33:15  kloczek
-- updated to 0.3.1,
-- new Source url.
-
-Revision 1.32  2001/03/10 21:11:43  misiek
-- time patch
-
-Revision 1.31  2001/02/01 16:27:34  kloczek
-- Requires for rc-scripts changed to Prereq.
-
-Revision 1.30  2000/09/30 17:39:37  kloczek
-- s#install -s#install #.
-
-Revision 1.29  2000/09/29 17:05:26  baggins
-- release 2
-- fixed init priorities
-
-Revision 1.28  2000/09/28 19:46:37  kloczek
-- updated to 0.2.1,
-- added using rpm new automation suit,
-- adaptrized.
-
-Revision 1.27  2000/09/05 01:15:23  kloczek
<<Diff was trimmed, longer than 597 lines>>

---- CVS-web:
    http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/nfs-utils/nfs-utils-heimdal_functions.patch?r1=1.3&r2=1.4&f=u
    http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/nfs-utils/nfs-utils-no_libgssapi.patch?r1=1.2&r2=1.3&f=u
    http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/nfs-utils/nfs-utils.spec?r1=1.186&r2=1.187&f=u



More information about the pld-cvs-commit mailing list