nfs-utils-vl.spec 38 KB

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