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

Revision 11958, 38.4 KB checked in by tomop, 5 years ago (diff)

nfs-utils-2.3.3-3

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