nfs-utils-vl.spec 36 KB

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