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

Revision 12285, 39.0 KB checked in by tomop, 5 years ago (diff)

updated 4 packages

gvfs-1.39.4-1

nfs-utils-2.4.1-1

nginx-1.16.1-3

php73-7.3.11-1

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