source: projects/specs/branches/6/n/nfs-utils/nfs-utils-vl.spec @ 7735

Revision 7735, 35.8 KB checked in by kudoh, 11 years ago (diff)
Line 
1Summary: NFS utilities and supporting clients and daemons for the kernel NFS server
2Summary(ja): カーネル NFS サーバ用 NFS ユーティリティと関連プログラム
3Name: nfs-utils
4URL: http://sourceforge.net/projects/nfs
5Version: 1.2.6
6Release: 2%{?_dist_release}
7
8%define enablegss 0
9
10# group all 32bit related archs
11%define all_32bit_archs i386 i686 athlon
12
13Source0: http://www.kernel.org/pub/linux/utils/nfs/%{name}-%{version}.tar.bz2
14Source1: ftp://nfs.sourceforge.net/pub/nfs/nfs.doc.tar.gz
15
16Source10: nfs.init
17Source11: nfslock.init
18Source12: rpcidmapd.init
19%if %{enablegss}
20Source13: rpcgssd.init
21Source14: rpcsvcgssd.init
22%endif
23Source15: nfs.sysconfig
24
25#Patch001: nfs-utils-1.2.7-rc5.patch
26
27Patch100: nfs-utils-1.2.1-statdpath-man.patch
28Patch101: nfs-utils-1.2.1-exp-subtree-warn-off.patch
29Patch102: nfs-utils-1.2.3-sm-notify-res_init.patch
30Patch103: nfs-utils-1.2.5-idmap-errmsg.patch
31
32Patch200: gssd-reverse-dns-fix
33
34Group: System Environment/Daemons
35Provides: exportfs    = %{version}-%{release}
36Provides: nfsstat     = %{version}-%{release}
37Provides: showmount   = %{version}-%{release}
38Provides: rpcdebug    = %{version}-%{release}
39Provides: rpc.idmapd  = %{version}-%{release}
40Provides: rpc.mountd  = %{version}-%{release}
41Provides: rpc.nfsd    = %{version}-%{release}
42Provides: rpc.statd   = %{version}-%{release}
43%if %{enablegss}
44Provides: rpc.gssd    = %{version}-%{release}
45Provides: rpc.svcgssd = %{version}-%{release}
46%endif
47Provides: mount.nfs   = %{version}-%{release}
48Provides: mount.nfs4  = %{version}-%{release}
49Provides: umount.nfs  = %{version}-%{release}
50Provides: umount.nfs4 = %{version}-%{release}
51Provides: sm-notify   = %{version}-%{release}
52Provides: start-statd = %{version}-%{release}
53
54License: GPL
55Buildroot: %{_tmppath}/%{name}-%{version}-root
56# Vine still uses portmap instead of rpcbind, as of this writing
57#Requires: rpcbind
58Requires: portmap >= 4.0
59Requires: sed, gawk, sh-utils, fileutils, textutils, grep
60Requires: modutils >= 2.4.26-9
61BuildRequires: libevent-devel >= 1.3b
62BuildRequires: libnfsidmap >= 0.20
63BuildRequires: libblkid-devel
64%if %{enablegss}
65BuildRequires: libgssglue-devel >= 0.3
66BuildRequires: librpcsecgss >= 0.17
67%endif
68BuildRequires: autoconf >= 2.57 openldap-devel >= 2.2
69BuildRequires: automake, libtool, glibc-headers
70BuildRequires: e2fsprogs-devel, tcp_wrappers
71BuildRequires: libtirpc-devel
72BuildRequires: device-mapper-devel
73Requires(pre): shadow-utils >= 4.0.3-25
74Requires(pre): /sbin/chkconfig /sbin/nologin
75Requires: libnfsidmap >= 0.20 libevent >= 1.3b
76%if %{enablegss}
77Requires: librpcsecgss >= 0.17 libgssglue
78%endif
79
80
81%description
82The nfs-utils package provides a daemon for the kernel NFS server and
83related tools, which provides a much higher level of performance than the
84traditional Linux NFS server used by most users.
85
86This package also contains the showmount program.  Showmount queries the
87mount daemon on a remote host for information about the NFS (Network File
88System) server on the remote host.  For example, showmount can display the
89clients which are mounted on that host.
90
91This package also contains the mount.nfs and umount.nfs program.
92
93%description -l ja
94nfs-utils パッケージには kernel NFS サーバと関連ツールが収録されています。
95これにより、多くのユーザに使われてきた旧来の Linux NFS サーバより高い
96パフォーマンスを提供することができます。
97
98このパッケージには showmount プログラムも収録されています。
99showmount は遠隔ホストの mount デーモンに問い合わせを行い、
100NFS サーバに関する情報を得ることができます。
101例えば、showmount を使うことで、その遠隔ホストをマウントしている
102クライアントの一覧を得ることができます。
103
104本パッケージにはまた mount.nfs と umount.nfs プログラムも収録されています。
105
106
107%prep
108%setup -q
109
110#%patch001 -p1
111%patch100 -p1
112%patch101 -p1
113%patch102 -p1
114%patch103 -p1
115
116%patch200 -p1
117
118# Remove .orig files
119find . -name "*.orig" | xargs rm -f
120
121
122%build
123
124%ifarch s390 s390x
125PIE="-fPIE"
126%else
127PIE="-fpie"
128%endif
129export PIE
130
131sh -x autogen.sh
132
133CFLAGS="`echo $RPM_OPT_FLAGS $ARCH_OPT_FLAGS $PIE -D_FILE_OFFSET_BITS=64`"
134%configure \
135    CFLAGS="$CFLAGS" \
136    CPPFLAGS="$DEFINES" \
137    LDFLAGS="-pie" \
138    --enable-mountconfig \
139    --enable-ipv6 \
140    --with-statdpath=/var/lib/nfs/statd \
141%if !%{enablegss}
142    --disable-gss \
143%endif   
144    --enable-mount
145
146make all
147
148
149%install
150rm -rf $RPM_BUILD_ROOT
151mkdir -p $RPM_BUILD_ROOT{/sbin,/usr/sbin}
152mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/{man5,man8}
153mkdir -p $RPM_BUILD_ROOT{/etc/rc.d/init.d,/etc/sysconfig}
154mkdir -p $RPM_BUILD_ROOT/etc/request-key.d
155make DESTDIR=$RPM_BUILD_ROOT install
156install -s -m 755 tools/rpcdebug/rpcdebug $RPM_BUILD_ROOT/usr/sbin
157install -m 644 utils/mount/nfsmount.conf  $RPM_BUILD_ROOT/etc
158install -m 755 %{SOURCE10} $RPM_BUILD_ROOT/etc/rc.d/init.d/nfs
159install -m 755 %{SOURCE11} $RPM_BUILD_ROOT/etc/rc.d/init.d/nfslock
160install -m 755 %{SOURCE12} $RPM_BUILD_ROOT/etc/rc.d/init.d/rpcidmapd
161%if %{enablegss}
162install -m 755 %{SOURCE13} $RPM_BUILD_ROOT/etc/rc.d/init.d/rpcgssd
163install -m 755 %{SOURCE14} $RPM_BUILD_ROOT/etc/rc.d/init.d/rpcsvcgssd
164%endif
165install -m 644 %{SOURCE15} $RPM_BUILD_ROOT/etc/sysconfig/nfs
166
167mkdir -p $RPM_BUILD_ROOT/var/lib/nfs/rpc_pipefs
168
169touch $RPM_BUILD_ROOT/var/lib/nfs/rmtab
170mv $RPM_BUILD_ROOT/usr/sbin/rpc.statd $RPM_BUILD_ROOT/sbin
171
172mkdir -p $RPM_BUILD_ROOT/var/lib/nfs/statd/sm
173mkdir -p $RPM_BUILD_ROOT/var/lib/nfs/statd/sm.bak
174mkdir -p $RPM_BUILD_ROOT/var/lib/nfs/v4recovery
175mkdir -p $RPM_BUILD_ROOT/etc/exports.d
176
177# temporarily remove nfs.5 man page until util-linux gets upgraded...
178rm -f $RPM_BUILD_ROOT/%{_mandir}/man5/nfs.5*
179
180
181%clean
182rm -rf $RPM_BUILD_ROOT
183
184
185%pre
186# move files so the running service will have this applied as well
187for x in gssd svcgssd idmapd ; do
188    if [ -f /var/lock/subsys/rpc.$x ]; then
189        mv /var/lock/subsys/rpc.$x /var/lock/subsys/rpc$x
190    fi
191done
192
193/usr/sbin/useradd -r -c "RPC Service User" \
194        -s /sbin/nologin -u 29 -d /var/lib/nfs rpcuser 2>/dev/null || :
195cat /etc/group | cut -d':' -f 1 | grep --quiet nfsnobody 2>/dev/null
196if [ "$?" -eq 1 ]; then
197  /usr/sbin/groupadd -g 29 rpcuser 2>/dev/null || :
198else
199  /usr/sbin/groupmod -g 29 rpcuser 2>/dev/null || :
200fi
201
202# Using the 16-bit value of -2 for the nfsnobody uid and gid
203%define nfsnobody_uid   65534
204
205# Create nfsnobody gid as long as it does not already exist
206cat /etc/group | cut -d':' -f 1 | grep --quiet nfsnobody 2>/dev/null
207if [ "$?" -eq 1 ]; then
208    /usr/sbin/groupadd -g %{nfsnobody_uid} nfsnobody 2>/dev/null || :
209else
210    /usr/sbin/groupmod -g %{nfsnobody_uid} nfsnobody 2>/dev/null || :
211fi
212
213# Create nfsnobody uid as long as it does not already exist.
214cat /etc/passwd | cut -d':' -f 1 | grep --quiet nfsnobody 2>/dev/null
215if [ "$?" -eq 1 ]; then
216    /usr/sbin/useradd -l -c "Anonymous NFS User" -r -g %{nfsnobody_uid} \
217        -s /sbin/nologin -u %{nfsnobody_uid} -d /var/lib/nfs nfsnobody 2>/dev/null || :
218else
219
220   /usr/sbin/usermod -u %{nfsnobody_uid} -g %{nfsnobody_uid} nfsnobody 2>/dev/null || :
221fi
222
223
224%post
225/sbin/chkconfig --add nfs
226/sbin/chkconfig --add nfslock
227/sbin/chkconfig --add rpcidmapd
228%if %{enablegss}
229/sbin/chkconfig --add rpcgssd
230/sbin/chkconfig --add rpcsvcgssd
231%endif
232# Make sure statd used the correct uid/gid.
233if [ -f /var/lock/subsys/nfslock ]; then
234        /etc/rc.d/init.d/nfslock stop > /dev/null
235        chown -R rpcuser:rpcuser /var/lib/nfs/statd
236        /etc/rc.d/init.d/nfslock start > /dev/null
237else
238        chown -R rpcuser:rpcuser /var/lib/nfs/statd
239fi
240
241%preun
242if [ "$1" = "0" ]; then
243    /etc/rc.d/init.d/nfs condrestart
244%if %{enablegss}
245    /etc/rc.d/init.d/rpcgssd condrestart
246%endif   
247    /etc/rc.d/init.d/rpcidmapd condrestart
248    /etc/rc.d/init.d/nfslock condrestart
249    /sbin/chkconfig --del rpcidmapd
250%if %{enablegss}
251    /sbin/chkconfig --del rpcgssd
252    /sbin/chkconfig --del rpcsvcgssd
253%endif
254    /sbin/chkconfig --del nfs
255    /sbin/chkconfig --del nfslock
256    /usr/sbin/userdel rpcuser 2>/dev/null || :
257    /usr/sbin/groupdel rpcuser 2>/dev/null || :
258    /usr/sbin/userdel nfsnobody 2>/dev/null || :
259    rm -rf /var/lib/nfs/statd
260    rm -rf /var/lib/nfs/v4recovery
261fi
262
263%postun
264if [ "$1" -ge 1 ]; then
265    /etc/rc.d/init.d/rpcidmapd condrestart > /dev/null
266%if %{enablegss}
267    /etc/rc.d/init.d/rpcgssd condrestart > /dev/null
268%endif
269    /etc/rc.d/init.d/nfs condrestart > /dev/null
270        /etc/rc.d/init.d/nfslock condrestart > /dev/null
271fi
272
273%triggerpostun -- nfs-server
274/sbin/chkconfig --add nfs
275
276%triggerpostun -- knfsd
277/sbin/chkconfig --add nfs
278
279%triggerpostun -- knfsd-clients
280/sbin/chkconfig --add nfslock
281
282%files
283%defattr(-,root,root)
284%doc linux-nfs/*
285%config /etc/rc.d/init.d/nfs
286%config /etc/rc.d/init.d/rpcidmapd
287%if %{enablegss}
288%config /etc/rc.d/init.d/rpcgssd
289%config /etc/rc.d/init.d/rpcsvcgssd
290%endif
291%config(noreplace) /etc/sysconfig/nfs
292%config(noreplace) /etc/nfsmount.conf
293%dir /etc/exports.d
294%dir /var/lib/nfs/v4recovery
295%dir /var/lib/nfs/rpc_pipefs
296%dir /var/lib/nfs
297%dir %attr(700,rpcuser,rpcuser) /var/lib/nfs/statd
298%dir %attr(700,rpcuser,rpcuser) /var/lib/nfs/statd/sm
299%dir %attr(700,rpcuser,rpcuser) /var/lib/nfs/statd/sm.bak
300%config(noreplace) /var/lib/nfs/xtab
301%config(noreplace) /var/lib/nfs/etab
302%config(noreplace) /var/lib/nfs/rmtab
303%config(noreplace) %attr(644,rpcuser,rpcuser) /var/lib/nfs/state
304/sbin/rpc.statd
305/sbin/osd_login
306/usr/sbin/exportfs
307/usr/sbin/nfsstat
308/usr/sbin/rpcdebug
309/usr/sbin/rpc.mountd
310/usr/sbin/rpc.nfsd
311/usr/sbin/showmount
312/usr/sbin/rpc.idmapd
313%if %{enablegss}
314/usr/sbin/rpc.gssd
315/usr/sbin/rpc.svcgssd
316/usr/sbin/gss_clnt_send_err
317/usr/sbin/gss_destroy_creds
318%endif
319/usr/sbin/sm-notify
320/usr/sbin/start-statd
321/usr/sbin/mountstats
322/usr/sbin/nfsiostat
323/usr/sbin/blkmapd
324%{_mandir}/*/*
325%config /etc/rc.d/init.d/nfslock
326
327%attr(4755,root,root)   /sbin/mount.nfs
328%attr(4755,root,root)   /sbin/mount.nfs4
329%attr(4755,root,root)   /sbin/umount.nfs
330%attr(4755,root,root)   /sbin/umount.nfs4
331
332
333%changelog
334* Tue Jul 23 2013 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.2.6-2
335- added Patch200 from openSUSE to fix CVE-2013-1923
336
337* Sat Oct 20 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.6-1
338- update to 1.2.6
339- Made nfsnobody's uid/gid to always be a 16-bit value of -2
340- change rpcuser's gid to fixed value 29
341
342* Sat Jan 28 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.5-1
343- update to 1.2.5
344- add patches (update to 1.2.6-rc6)
345- enable-ipv6 (add BR: libtirpc-devel)
346- add BR: device-mapper-devel
347
348* Sun Feb 13 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.1.5-5
349- add BuildRequires: libblkid-devel
350
351* Thu Feb 10 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.1.5-4
352- rebuilt with libevent-2.0.10
353
354* Tue Aug 11 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.5-3
355- add INIT INFO headers to initscripts
356
357* Fri Jun 12 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.1.5-2
358- import more patches from FC11 1.1.5-5
359  - Patch101: upstream rc2 patch
360  - Patch102: upstream rc3 patch
361    - gssd: initialize fakeseed in prepare_krb5_rfc1964_buffer
362    - gssd: NULL-terminate buffer after read in read_service_info (try #2)
363    - gssd: free buffer allocated by gssd_k5_err_msg
364    - gssd: fix potential double-frees in gssd
365    - Removed a number of warn_unused_result warnings
366  - Patch103: Update nfsstat with --sleep and --list options
367  - Patch104: Fixed umount from using non-privilege ports (bz 492598)
368
369* Sun Apr 26 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.5-1
370- new upstream release
371- fix %%post, remove '-l' from useradd option
372
373* Sun Jan 04 2009 NAKAMURA Kenta <kenta@vinelinux.org> 1.1.2-4
374- rebuilt with openldap-2.4.11
375- spec in UTF-8
376
377* Thu May 15 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.1.2-3
378- updated to 1.1.2, based on Fedora 1.1.2-2
379- disable RPC Sec-GSS feature for Vine (and we won't any longer? Let me know)
380- temporarily remove nfs.5 man page until util-linux gets upgraded
381- previous Vine changelogs as follows:
382
383  - Wed Apr 23 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.0.9-1
384  - rebuilt with libevent-1.4.3-1
385
386  - Sun Jul  8 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.0.9-0vl4
387  - rebuilt with libevent-1.3b-0vl1
388
389  - Tue Aug 29 2006 MATSUBAYASHI <shaolin@vinelinux.org> 1.0.9-0vl3
390  - rebuilt with libevent-1.1b-0vl1
391
392  - Sun Aug 27 2006 NAKAMURA Kenta <kenta@vinelinux.org> 1.0.9-0vl2
393  - rebuilt with openldap-2.3.27-0vl1
394
395  - Wed Jul 26 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.9-0vl1
396  - new upstream release
397  - drop obsolete patches
398
399  - Wed Mar 30 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.0.8-0vl0.rc2.2
400  - add libevent-devel and libnfsidmap to BuidRequires
401
402  - Mon Mar 20 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.8-0vl0.rc2.1
403  - update to nfs-utils-1.0.8-rc2
404  - merged some patches from FC
405  - fix kanji code of spec file
406
407  - Tue Apr 26 2005 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.0.6-0vl1
408  - updated to 1.0.6
409  - merged several files from 1.0.6-22
410
411  - Sun Feb  9 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.1-0vl1
412  - new upstream release
413  - remove quota related files, now we are using it from quota utils.
414
415  - Sat Sep 01 2001 Toru Sagami <sagami@vinelinux.org>
416  - 0.3.1-12vl2: revive rpc.rquotad for the time being
417
418  - Fri Aug 24 2001 Toru Sagami <sagami@vinelinux.org>
419  - 0.3.1-12vl1: ported to Vine
420
421* Mon Apr 14 2008 Steve Dickson <steved@redhat.com>  1.1.2-2
422- Make EACCES a non fatal error (bz 439807)
423
424* Tue Mar 25 2008 Steve Dickson <steved@redhat.com>  1.1.2-1
425- Upgrade to nfs-utils-1.1.2
426
427* Mon Mar  3 2008 Steve Dickson <steved@redhat.com>  1.1.1-5
428- Stopped mountd from incorrectly logging an error
429  (commit 9dd9b68c4c44f0d9102eb85ee2fa36a8b7f638e3)
430- Stop gssd from ignoring the machine credential caches
431  (commit 46d439b17f22216ce8f9257a982c6ade5d1c5931)
432- Fixed typo in the nfsstat command line arugments.
433  (commit acf95d32a44fd8357c24e8a04ec53fc6900bfc58)
434- Added test to stop buffer overflow in idmapd
435  (commit bcd0fcaf0966c546da5043be700587f73174ae25)
436
437* Sat Feb  9 2008 Steve Dickson <steved@redhat.com>  1.1.1-4
438- Cleaned up some typos that were found in the various
439  places in the mountd code
440
441* Thu Jan 24 2008 Steve Dickson <steved@redhat.com>  1.1.1-3
442- Added in relatime mount option so mount.nfs stays
443  compatible with the mount command in util-linux-ng (bz 274301)
444
445* Tue Jan 22 2008 Steve Dickson <steved@redhat.com>  1.1.1-2
446- Added -S/--since to the nfsstat(1) manpage
447- The wording in the exportfs man page can be a bit confusing, implying
448  that "exportfs -u :/foo" will unexport /foo from all hosts, which it won't
449- Removed nfsprog option since the kernel no longer supports it.
450- Removed mountprog option since the kernel no longer supports it.
451- Stop segfaults on amd64 during warnings messages.
452- Fix bug when both crossmnt and fsid are set.
453
454* Sat Jan  5 2008 Steve Dickson <steved@redhat.com>  1.1.1-1
455- Updated to latest upstream release, nfs-utils-1.1.1
456- Added the removal of sm-notify.pid to nfslock init script.
457- Changed spec file to use condrestart instead of condstop
458  when calling init scripts.
459- Fixed typo in rpc.mountd man page
460- Turn on 'nohide' automatically for all refer exports (bz 313561)
461
462* Tue Dec 04 2007 Release Engineering <rel-eng at fedoraproject dot org> - 1.1.0-7
463 - Rebuild for openldap bump
464
465* Wed Oct 17 2007 Steve Dickson <steved@redhat.com>  1.1.0-6
466- Switch the libgssapi dependency to libgssglue
467
468* Fri Sep 14 2007 Steve Dickson <steved@redhat.com>  1.1.0-5
469- Changed the default paths in sm-notify to
470  /var/lib/nfs/statd (bz 258461)
471- Updated exportfs manpage (bz 262861)
472
473* Wed Aug 15 2007 Steve Dickson <steved@redhat.com>  1.1.0-4
474- Make sure the open() system calling in exportfs uses
475  mode bits when creating the etab file (bz 252440).
476
477* Mon Aug 13 2007 Steve Dickson <steved@redhat.com>  1.1.0-3
478- Added nosharecache mount option which re-enables
479  rw/ro mounts to the same server (bz 243913).
480
481* Thu Aug  2 2007 Steve Dickson <steved@redhat.com>  1.1.0-2
482- Make sure the gss and idmap daemons remove thier lock
483  files when they are stopped.
484
485* Sat Jul 28 2007 Steve Dickson <steved@redhat.com>  1.1.0-1
486- Upgraded to the latest upstream version (nfs-utils-1.1.0)
487
488* Thu May 24 2007 Steve Dickson <steved@redhat.com> 1.0.10-7
489- Fixed typo in mount.nfs4 that causes a segfault during
490  error processing (bz 241190)
491
492* Tue May 22 2007 Steve Dickson <steved@redhat.com> 1.0.10-6
493- Make sure the condrestarts exit with a zero value (bz 240225)
494- Stopped /etc/sysconfig/nfs from being overwritten on updates (bz 234543)
495- Added -o nordirplus mount option to disable READDIRPLUS (bz 240357)
496- Disabled the FSCache patch, for now...
497
498* Wed May 10 2007 Steve Dickson <steved@redhat.com> 1.0.12-5
499- Fix mount.nfs4 to display correct error message (bz 227212)
500- Updated mountd and showmount reverse lookup flags (bz 220772)
501- Eliminate timeout on nfsd shutdowns (bz 222001)
502- Eliminate memory leak in mountd (bz 239536)
503- Make sure statd uses correct uid/gid by chowning
504  the /var/lib/nfs/statd with the rpcuser id. (bz 235216)
505- Correct some sanity checking in rpc.nfsd. (bz 220887)
506- Added missing unlock_mtab() call in moutnd
507- Have mountd hold open etab file to force inode number to change (bz 236823)
508- Create a /etc/sysconfig/nfs with all the possible init script
509  variables (bz 234543)
510- Changed nfs initscript to exit with correct value (bz 221874)
511
512* Tue Apr  3 2007 Steve Dickson <steved@redhat.com> 1.0.12-4
513- Replace portmap dependency with an rpcbind dependency (bz 228894)
514
515* Mon Mar 12 2007 Steve Dickson <steved@redhat.com> 1.0.12-3
516- Incorporated Merge Review comments (bz 226198)
517
518* Fri Mar  9 2007 Steve Dickson <steved@redhat.com> 1.0.12-2
519- Added condstop to all the initscripts (bz 196934)
520- Made no_subtree_check a default export option (bz 212218)
521
522* Tue Mar  6 2007 Steve Dickson <steved@redhat.com> 1.0.12-1
523- Upgraded to 1.0.12
524- Fixed typo in Summary.
525
526* Thu Mar  1 2007 Karel Zak <kzak@redhat.com>  1.0.11-2
527- Fixed mount.nfs -f (fake) option (bz 227988)
528
529* Thu Feb 22 2007 Steve Dickson <steved@redhat.com> 1.0.11-1
530- Upgraded to 1.0.11
531
532* Wed Feb 21 2007 Steve Dickson <steved@redhat.com> 1.0.10-7
533- Added FS_Location support
534
535* Mon Dec 18 2006 Karel Zak <kzak@redhat.com> 1.0.10-6
536- add support for mount options that contain commas (bz 219645)
537
538* Wed Dec 13 2006 Steve Dickson <steved@redhat.com> 1.0.10-5
539- Stopped v4 umounts from ping rpc.mountd (bz 215553)
540
541* Wed Nov 28 2006 Steve Dickson <steved@redhat.com> 1.0.10-4
542- Doing a connect on UDP sockets causes the linux network
543  stack to reject UDP patches from multi-home server with
544  nic on the same subnet. (bz 212471)
545
546* Wed Nov 15 2006 Steve Dickson <steved@redhat.com> 1.0.10-3
547- Removed some old mounting versioning code that was
548  stopping tcp mount from working (bz 212471)
549
550* Tue Oct 31 2006 Steve Dickson <steved@redhat.com> 1.0.10-2
551- Fixed -o remount (bz 210346)
552- fix memory leak in rpc.idmapd (bz 212547)
553- fix use after free bug in dirscancb (bz 212547)
554- Made no_subtree_check a default export option (bz 212218)
555
556* Wed Oct 25 2006 Steve Dickson <steved@redhat.com> 1.0.10-1
557- Upgraded to 1.0.10
558
559* Mon Oct 16 2006 Steve Dickson <steved@redhat.com> 1.0.9-10
560- Fixed typo in nfs man page (bz 210864).
561
562* Fri Oct 13 2006 Steve Dickson <steved@redhat.com> 1.0.9-9
563- Unable to mount NFS V3 share where sec=none is specified (bz 210644)
564
565* Tue Sep 26 2006 Steve Dickson <steved@redhat.com> 1.0.9-8
566- mount.nfs was not returning a non-zero exit value
567  on failed mounts (bz 206705)
568
569* Wed Sep 20 2006 Karel Zak <kzak@redhat.com> 1.0.9-7
570- Added support for the mount -s (sloppy) option (#205038)
571- Added nfs.5 man page from util-linux
572- Added info about [u]mount.nfs to the package description
573
574* Mon Sep 11 2006  <SteveD@RedHat.com> 1.0.9-6
575- Removed the compiling of getiversion and getkversion since
576  UTS_RELEASE is no longer defined and these binary are
577  not installed.
578
579* Fri Aug 18 2006 <SteveD@RedHat.com> 1.0.9-5
580- Changed gssd daemons to cache things in memory
581  instead of /tmp which makes selinux much happier.
582  (bz 203078)
583
584* Wed Aug 16 2006 <SteveD@RedHat.com> 1.0.9-4
585- Allow variable for HA callout program in /etc/init.d/nfslock
586  (bz 202790)
587
588* Wed Aug 02 2006 <wtogami@redhatcom> 1.0.9-3
589- add epoch (#196359)
590
591* Fri Jul 28 2006 <SteveD@RedHat.com> 1.0.9-2
592- Enabled the creating of mount.nfs and umount.nfs binaries
593- Added mount option fixes suggested by upstream.
594- Fix lazy umounts (bz 169299)
595- Added -o fsc mount option.
596
597* Mon Jul 24 2006 <SteveD@RedHat.com> 1.0.9-1
598- Updated to 1.0.9 release
599
600* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1:1.0.8-5.1
601- rebuild
602
603* Sun Jul  2 2006 <jkeating@redhat.com> 1:1.0.8-5
604- Introduce epoch to fix upgrade path
605
606* Sat Jul  1 2006 <SteveD@RedHat.com> 1.0.8-3
607- Fixed typos in /etc/rc.d/init.d/nfs file (bz 184486)
608
609* Fri Jun 30 2006 <SteveD@RedHat.com> 1.0.8-3
610- Split the controlling of nfs version, ports, and protocol
611  into two different patches
612- Fixed and added debugging statements to rpc.mountd.
613- Fixed -p arg to work with priviledged ports (bz 156655)
614- Changed nfslock initscript to set LOCKD_TCPPORT and
615  LOCKD_UDPPORT (bz 162133)
616- Added MOUNTD_NFS_V1 variable to version 1 of the
617  mount protocol can be turned off. (bz 175729)
618- Fixed gssd to handel mixed case characters in
619  the domainname. (bz 186069)
620
621* Wed Jun 21 2006 <SteveD@RedHat.com> 1.0.8-2
622- Updated to nfs-utils-1.0.8
623
624* Thu Jun  8 2006 <SteveD@RedHat.com> 1.0.8.rc4-1
625- Upgraded to the upstream 1.0.8.rc4 version
626
627* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.0.8.rc2-4.FC5.2
628- bump again for double-long bug on ppc(64)
629
630* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.0.8.rc2-4.FC5.1
631- rebuilt for new gcc4.1 snapshot and glibc changes
632
633* Fri Jan 20 2006 Steve Dickson <SteveD@RedHat.com> 1.0.8.rc2-4.FC5
634- Added new libnfsidmap call, nfs4_set_debug(), to rpc.idmapd
635  which turns on debugging in the libarary.
636
637* Mon Jan 16 2006 Steve Dickson <SteveD@RedHat.com> 1.0.8.rc2-3.FC5
638- Added innetgr patch that changes configure scripts to
639  check for the innetgr function. (bz 177899)
640
641* Wed Jan 11 2006 Peter Jones <pjones@redhat.com> 1.0.8.rc2-2.FC5
642- Fix lockfile naming in the initscripts so they're stopped correctly.
643
644* Mon Jan  9 2006 Steve Dickson <SteveD@RedHat.com> 1.0.8.rc2-1.FC5
645- Updated to 1.0.8-rc2 release
646- Broke out libgssapi into its own rpm
647- Move librpcsecgss and libnfsidmap in the new nfs-utils-lib rpm
648- Removed libevent code; Required to be installed.
649
650* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
651- rebuilt
652
653* Sun Oct 23 2005 Steve Dickson <SteveD@RedHat.com> 1.0.7-19
654- Updated to latest code in SourceForge CVS
655- Updated to latest CITI patches (1.0.7-4)
656- Fix bug in nfsdreopen by compiling in server defaults
657
658* Thu Sep 22 2005 Steve Dickson <SteveD@RedHat.com> 1.0.7-18
659- Updated libnfsidmap to 0.11
660- Updated libgssapi to 0.5
661- Made sure the gss daemons and new libs are
662  all using the same include files.
663- Removed code from the tree that is no longer used.
664- Add ctlbits patch that introduced the -N -T and -U
665  command line flags to rpc.nfsd.
666
667* Sun Sep 18 2005 Steve Dickson <SteveD@RedHat.com> 1.0.7-17
668- Updated to latest nfs-utils code in upstream CVS tree
669- Updated libevent from 1.0b to 1.1a
670- Added libgssapi-0.4 and librpcsecgss-0.6 libs from CITI
671
672* Tue Sep  8 2005 Steve Dickson <SteveD@RedHat.com> 1.0.7-16
673- Reworked the nfslock init script so if lockd is running
674  it will be killed which is what the HA community needs. (bz 162446)
675- Stopped rpcidmapd.init from doing extra echoing when
676  condstart-ed.
677
678* Wed Aug 24 2005 Peter Jones <pjones@redhat.com> - 1.0.7-15
679- don't strip during "make install", so debuginfo packages are generated right
680
681* Thu Aug 18 2005 Florian La Roche <laroche@redhat.com>
682- no need to still keep a requirement for kernel-2.2 or newer
683
684* Tue Aug 16 2005 Steve Dickson <SteveD@RedHat.com> 1.0.7-13
685- Changed mountd to use stat64() (bz 165062)
686
687* Tue Aug  2 2005 Steve Dickson <SteveD@RedHat.com> 1.0.7-12
688- Changed useradd to use new -l flag (bz149407)
689- 64bit fix in gssd code (bz 163139)
690- updated broken dependencies
691- updated rquotad to compile with latest
692  quota version.
693
694* Thu May 26 2005 Steve Dickson <SteveD@RedHat.com> 1.0.7-8
695- Fixed subscripting problem in idmapd (bz 158188)
696
697* Thu May 19 2005 Steve Dickson <SteveD@RedHat.com> 1.0.7-7
698- Fixed buffer overflow in rpc.svcgssd (bz 114288)
699
700* Wed Apr 13 2005 Steve Dickson <SteveD@RedHat.com> 1.0.7-6
701- Fixed misformated output from nfslock script (bz 154648)
702
703* Mon Mar 29 2005 Steve Dickson <SteveD@RedHat.com> 1.0.7-4
704- Fixed a compile error on x86_64 machines in the gss code.
705- Updated the statd-notify-hostname.patch to eliminate
706  a segmentation fault in rpc.statd when an network
707  interface was down. (bz 151828)
708
709* Sat Mar 19 2005 Steve Dickson <SteveD@RedHat.com> 1.0.7-3
710- Changed xlog to use LOG_INFO instead of LOG_DEBUG
711  so debug messages will appear w/out any config
712  changes to syslog.conf.
713- Reworked how /etc/exports is setup (bz 151389)
714
715* Wed Mar  2 2005 Steve Dickson <SteveD@RedHat.com> 1.0.7-2
716- Tied the rpcsecgss debugging in with gssd and
717  svcgssd debugging
718
719* Mon Feb 14 2005 Steve Dickson <SteveD@RedHat.com>
720- Added support to rpcgssd.init and rpcsvcgssd.init scripts
721  to insmod security modules.
722- Changed the nfs.init script to bring rpc.svcgssd up and down,
723  since rpc.svcgssd is only needed with the NFS server is running.
724
725* Tue Dec 14 2004 Steve Dickson <SteveD@RedHat.com>
726- Fix problem in idmapd that was causing "xdr error 10008"
727  errors (bz 142813)
728- make sure the correct hostname is used in the SM_NOTIFY
729  message that is sent from a rebooted server which has
730  multiple network interfaces. (bz 139101)
731
732- Changed nfslock to send lockd a -KILL signal
733  when coming down. (bz 125257)
734
735* Thu Nov 11 2004 Steve Dickson <SteveD@RedHat.com>
736- Replaced a memcopy with explicit assignments
737  in getquotainfo() of rquotad to fix potential overflow
738  that can occur on 64bit machines. (bz 138068)
739
740* Mon Nov  8 2004 Steve Dickson <SteveD@RedHat.com>
741- Updated to latest sourceforge code
742- Updated to latest CITIT nfs4 patches
743
744* Sun Oct 17 2004 Steve Dickson <SteveD@RedHat.com>
745- Changed nfs.init to bring down rquotad correctly
746  (bz# 136041)
747
748* Thu Oct 14 2004 Steve Dickson <SteveD@RedHat.com>
749- Added "$RQUOTAD_PORT" variable to nfs.init which
750  allows the rpc.rquotad to use a predefined port
751  (bz# 124676)
752
753* Fri Oct  1 2004 <SteveD@RedHat.com
754- Incorporate some clean up code from Ulrich Drepper (bz# 134025)
755- Fixed the chkconfig number in the rpcgssd, rpcidmapd, and
756  rpcsvcgssd initscrpts (bz# 132284)
757
758* Fri Sep 24 2004 <SteveD@RedHat.com>
759- Make sure the uid/gid of nfsnobody is the
760  correct value for all archs (bz# 123900)
761- Fixed some security issues found by SGI (bz# 133556)
762
763* Mon Aug 30 2004 Steve Dickson <SteveD@RedHat.com>
764- Major clean up.
765- Removed all unused/old patches
766- Rename and condensed a number of patches
767- Updated to CITI's nfs-utils-1.0.6-13 patches
768
769* Tue Aug 10 2004 Bill Nottingham <notting@redhat.com>
770- move if..fi condrestart stanza to %%postun (#127914, #128601)
771
772* Wed Jun 16 2004 <SteveD@RedHat.com>
773- nfslock stop is now done on package removals
774- Eliminate 3 syslog messages that are logged for
775  successful events.
776
777* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
778- rebuilt
779
780* Mon Jun 14 2004 <SteveD@RedHat.com>
781- Fixed syntax error in nfs initscripts when
782  NETWORKING is not defined
783- Removed sync warning on readonly exports.
784- Changed run levels in rpc initscripts.
785- Replaced modinfo with lsmod when checking
786  for loaded modules.
787
788* Tue Jun  1 2004 <SteveD@RedHat.com>
789- Changed the rpcgssd init script to ensure the
790  rpcsec_gss_krb5 module is loaded
791
792* Tue May 18 2004 <SteveD@RedHat.com>
793- Removed the auto option from MOUNTD_NFS_V2 and
794  MOUNTD_NFS_V3 variables. Since v2 and v3 are on
795  by default, there only needs to be away of
796  turning them off.
797
798* Thu May 10 2004 <SteveD@RedHat.com>
799- Rebuilt
800
801* Thu Apr 15 2004 <SteveD@RedHat.com>
802- Changed the permission on idmapd.conf to 644
803- Added mydaemon code to svcgssd
804- Updated the add_gssd.patch from upstream
805
806* Wed Apr 14 2004 <SteveD@RedHat.com>
807- Created a pipe between the parent and child so
808  the parent process can report the correct exit
809  status to the init scripts
810- Added SIGHUP processing to rpc.idmapd and the
811  rpcidmapd init script.
812
813* Mon Mar 22 2004 <SteveD@RedHat.com>
814- Make sure check_new_cache() is looking in the right place
815
816* Wed Mar 17 2004 <SteveD@RedHat.com>
817- Changed the v4 initscripts to use $prog for the
818  arugment to daemon
819
820* Tue Mar 16 2004 <SteveD@RedHat.com>
821- Made the nfs4 daemons initscripts work better when
822  sunrpc is not a module
823- added more checks to see if modules are being used.
824
825* Mon Mar 15 2004 <SteveD@RedHat.com>
826- Add patch that sets up gssapi_mech.conf correctly
827
828* Fri Mar 12 2004 <SteveD@RedHat.com>
829- Added the shutting down of the rpc v4 daemons.
830- Updated the Red Hat only patch with some init script changes.
831
832* Thu Mar 11 2004 Bill Nottingham <notting@redhat.com>
833- rpc_pipefs mounting and aliases are now in modutils; require that
834
835* Thu Mar 11 2004 <SteveD@RedHat.com>
836- Updated the gssd patch.
837
838* Sun Mar  7 2004 <SteveD@RedHat.com>
839- Added the addition and deletion of rpc_pipefs to /etc/fstab
840- Added the addition and deletion of module aliases to /etc/modules.conf
841
842* Mon Mar  1 2004 <SteveD@RedHat.com>
843- Removed gssd tarball and old nfsv4 patch.
844- Added new nfsv4 patches that include both the
845   gssd and idmapd daemons
846- Added redhat-only v4 patch that reduces the
847   static librpc.a to only contain gss rpc related
848   routines (I would rather have gssd use the glibc
849   rpc routines)
850-Changed the gssd svcgssd init scripts to only
851   start up if SECURE_NFS is set to 'yes' in
852   /etc/sysconfig/nfs
853
854* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
855- rebuilt
856
857* Thu Feb 12 2004 Thomas Woerner <twoerner@redhat.com>
858- make rpc.lockd, rpc.statd, rpc.mountd and rpc.nfsd pie
859
860* Wed Jan 28 2004 Steve Dickson <SteveD@RedHat.com>
861- Added the NFSv4 bits
862
863* Mon Dec 29 2003 Steve Dickson <SteveD@RedHat.com>
864- Added the -z flag to nfsstat
865
866* Wed Dec 24 2003  Steve Dickson <SteveD@RedHat.com>
867- Fixed lockd port setting in nfs.int script
868
869* Wed Oct 22 2003 Steve Dickson <SteveD@RedHat.com>
870- Upgrated to 1.0.6
871- Commented out the acl path for fedora
872
873* Thu Aug  27 2003 Steve Dickson <SteveD@RedHat.com>
874- Added the setting of lockd ports via sysclt interface
875- Removed queue setting code since its no longer needed
876
877* Thu Aug  7 2003 Steve Dickson <SteveD@RedHat.com>
878- Added back the acl patch Taroon b2
879
880* Wed Jul 23 2003 Steve Dickson <SteveD@RedHat.com>
881- Commented out the acl patch (for now)
882
883* Wed Jul 21 2003 Steve Dickson <SteveD@RedHat.com>
884- Upgrated to 1.0.5
885
886* Wed Jun 18 2003 Steve Dickson <SteveD@RedHat.com>
887- Added security update
888- Fixed the drop-privs.patch which means the chroot
889patch could be removed.
890
891* Mon Jun  9 2003 Steve Dickson <SteveD@RedHat.com>
892- Defined the differ kinds of debugging avaliable for mountd in
893the mountd man page.
894
895* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
896- rebuilt
897
898* Tue Jun  3 2003 Steve Dickson <SteveD@RedHat.com>
899- Upgraded to 1.0.3
900- Fixed numerous bugs in init scrips
901- Added nfsstat overflow patch
902
903* Thu Jan 23 2003 Tim Powers <timp@redhat.com> 1.0.1-2.9
904- rebuild
905
906* Fri Dec 13 2002 Daniel J Walsh <dwalsh@redhat.com>
907- change init script to not start rpc.lock if already running
908
909* Wed Dec 11 2002 Daniel J Walsh <dwalsh@redhat.com>
910- Moved access code to be after dropping privs
911
912* Mon Nov 18 2002 Stephen C. Tweedie <sct@redhat.com>
913- Build with %%configure
914- Add nhfsgraph, nhfsnums and nhfsrun to the files list
915
916* Mon Nov 11 2002 Stephen C. Tweedie <sct@redhat.com>
917- Don't drop privs until we've bound the notification socket
918
919* Thu Nov  7 2002 Stephen C. Tweedie <sct@redhat.com>
920- Ignore SIGPIPE in rpc.mountd
921
922* Thu Aug  1 2002 Bob Matthews <bmatthews@redhat.com>
923- Add Sean O'Connell's <sean@ee.duke.edu> nfs control tweaks
924- to nfs init script.
925
926* Mon Jul 22 2002 Bob Matthews <bmatthews@redhat.com>
927- Move to nfs-utils-1.0.1
928
929* Mon Feb 18 2002 Bob Matthews <bmatthews@redhat.com>
930- "service nfs restart" should start services even if currently
931-   not running (#59469)
932- bump version to 0.3.3-4
933
934* Wed Oct  3 2001 Bob Matthews <bmatthews@redhat.com>
935- Move to nfs-utils-0.3.3
936- Make nfsnobody a system account (#54221)
937
938* Tue Aug 21 2001 Bob Matthews <bmatthews@redhat.com>
939- if UID 65534 is unassigned, add user nfsnobody (#22685)
940
941* Mon Aug 20 2001 Bob Matthews <bmatthews@redhat.com>
942- fix typo in nfs init script which prevented MOUNTD_PORT from working (#52113)
943
944* Tue Aug  7 2001 Bob Matthews <bmatthews@redhat.com>
945- nfs init script shouldn't fail if /etc/exports doesn't exist (#46432)
946
947* Fri Jul 13 2001 Bob Matthews <bmatthews@redhat.com>
948- Make %%pre useradd consistent with other Red Hat packages.
949
950* Tue Jul 03 2001 Michael K. Johnson <johnsonm@redhat.com>
951- Added sh-utils dependency for uname -r in nfs init script
952
953* Tue Jun 12 2001 Bob Matthews <bmatthews@redhat.com>
954- make non RH kernel release strings scan correctly in
955-   nfslock init script (#44186)
956
957* Mon Jun 11 2001 Bob Matthews <bmatthews@redhat.com>
958- don't install any rquota pages in _mandir: (#39707, #44119)
959- don't try to manipulate rpc.rquotad in init scripts
960-   unless said program actually exists: (#43340)
961
962* Tue Apr 10 2001 Preston Brown <pbrown@redhat.com>
963- don't translate initscripts for 6.x
964
965* Tue Apr 10 2001 Michael K. Johnson <johnsonm@redhat.com>
966- do not start lockd on kernel 2.2.18 or higher (done automatically)
967
968* Fri Mar 30 2001 Preston Brown <pbrown@redhat.com>
969- don't use rquotad from here now; quota package contains a version that
970  works with 2.4 (#33738)
971
972* Tue Mar 12 2001 Bob Matthews <bmatthews@redhat.com>
973- Statd logs at LOG_DAEMON rather than LOG_LOCAL5
974- s/nfs/\$0/ where appropriate in init scripts
975
976* Tue Mar  6 2001 Jeff Johnson <jbj@redhat.com>
977- Move to nfs-utils-0.3.1
978
979* Wed Feb 14 2001 Bob Matthews <bmatthews@redhat.com>
980- #include <time.h> patch
981
982* Mon Feb 12 2001 Bob Matthews <bmatthews@redhat.com>
983- Really enable netgroups
984
985* Mon Feb  5 2001 Bernhard Rosenkraenzer <bero@redhat.com>
986- i18nize initscripts
987
988* Fri Jan 19 2001 Bob Matthews <bmatthews@redhat.com>
989- Increased {s,r}blen in rpcmisc.c:makesock to accommodate eepro100
990
991* Tue Jan 16 2001 Bob Matthews <bmatthews@redhat.com>
992- Hackish fix in build section to enable netgroups
993
994* Wed Jan  3 2001 Bob Matthews <bmatthews@redhat.com>
995- Fix incorrect file specifications in statd manpage.
996- Require gawk 'cause it's used in nfslock init script.
997
998* Thu Dec 13 2000 Bob Matthews <bmatthews@redhat.com>
999- Require sed because it's used in nfs init script
1000
1001* Tue Dec 12 2000 Bob Matthews <bmatthews@redhat.com>
1002- Don't do a chroot(2) after dropping privs, in statd.
1003
1004* Mon Dec 11 2000 Bob Matthews <bmatthews@redhat.com>
1005- NFSv3 if kernel >= 2.2.18, detected in init script
1006
1007* Thu Nov 23 2000 Florian La Roche <Florian.LaRoche@redhat.de>
1008- update to 0.2.1
1009
1010* Tue Nov 14 2000 Bill Nottingham <notting@redhat.com>
1011- don't start lockd on 2.4 kernels; it's unnecessary
1012
1013* Tue Sep  5 2000 Florian La Roche <Florian.LaRoche@redhat.com>
1014- more portable fix for mandir
1015
1016* Sun Sep  3 2000 Florian La Roche <Florian.LaRoche@redhat.com>
1017- update to 0.2-release
1018
1019* Fri Sep  1 2000 Florian La Roche <Florian.LaRoche@redhat.com>
1020- fix reload script
1021
1022* Thu Aug 31 2000 Florian La Roche <Florian.LaRoche@redhat.com>
1023- update to 0.2 from CVS
1024- adjust statd-drop-privs patch
1025- disable tcp_wrapper support
1026
1027* Wed Aug  2 2000 Bill Nottingham <notting@redhat.com>
1028- fix stop priority of nfslock
1029
1030* Tue Aug  1 2000 Bill Nottingham <notting@redhat.com>
1031- um, actually *include and apply* the statd-drop-privs patch
1032
1033* Mon Jul 24 2000 Bill Nottingham <notting@redhat.com>
1034- fix init script ordering (#14502)
1035
1036* Sat Jul 22 2000 Bill Nottingham <notting@redhat.com>
1037- run statd chrooted and as non-root
1038- add prereqs
1039
1040* Tue Jul 18 2000 Trond Eivind Glomsrd <teg@redhat.com>
1041- use "License", not "Copyright"
1042- use %%{_tmppath} and %%{_mandir}
1043
1044* Mon Jul 17 2000 Matt Wilson <msw@redhat.com>
1045- built for next release
1046
1047* Mon Jul 17 2000 Matt Wilson <msw@redhat.com>
1048- 0.1.9.1
1049- remove patch0, has been integrated upstream
1050
1051* Wed Feb  9 2000 Bill Nottingham <notting@redhat.com>
1052- the wonderful thing about triggers, is triggers are wonderful things...
1053
1054* Thu Feb 03 2000 Cristian Gafton <gafton@redhat.com>
1055- switch to nfs-utils as the base tree
1056- fix the statfs patch for the new code base
1057- single package that obsoletes everything we had before (if I am to keep
1058  some traces of my sanity with me...)
1059
1060* Mon Jan 17 2000 Preston Brown <pbrown@redhat.com>
1061- use statfs syscall instead of stat to determinal optimal blksize
Note: See TracBrowser for help on using the repository browser.