source: projects/specs/trunk/n/nfs-utils/nfs-utils-vl.spec @ 11860

Revision 11860, 38.3 KB checked in by tomop, 5 years ago (diff)

nfs-utils-2.3.3-2

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