xinetd-vl.spec 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570
  1. %define _use_internal_dependency_generator 0
  2. %define __find_requires %{SOURCE99}
  3. Summary: A secure replacement for inetd.
  4. Name: xinetd
  5. Version: 2.3.14
  6. Release: 3%{?_dist_release}
  7. License: Distributable (BSD-like)
  8. Group: System Environment/Daemons
  9. Source: http://www.xinetd.org/xinetd-%{version}.tar.gz
  10. Source1: xinetd.init
  11. Source2: xinetd.conf
  12. Source3: xinetd-inetdconvert
  13. Source4: xinetd-ttime
  14. Source5: xinetd-utime
  15. Source6: xinetd-tdtime
  16. Source7: xinetd-udtime
  17. Source8: xinetd-echo
  18. Source9: xinetd-uecho
  19. Source10: xinetd-chargen
  20. Source11: xinetd-uchargen
  21. Source12: xinetd.sysconf
  22. Source13: xinetd-services
  23. Source99: filter-requires-xinetd.sh
  24. Patch0: xinetd-2.3.11-pie.patch
  25. Patch1: xinetd-2.3.13-libwrap.patch
  26. Patch2: xinetd-2.3.12-tcp_rpc.patch
  27. Requires(pre): chkconfig initscripts
  28. Requires: initscripts setup fileutils
  29. BuildRequires: tcp_wrappers
  30. URL: http://www.xinetd.org/
  31. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  32. Provides: inetd
  33. %description
  34. Xinetd is a secure replacement for inetd, the Internet services
  35. daemon. Xinetd provides access control for all services based on the
  36. address of the remote host and/or on time of access and can prevent
  37. denial-of-access attacks. Xinetd provides extensive logging, has no
  38. limit on the number of server arguments, and lets you bind specific
  39. services to specific IP addresses on your host machine. Each service
  40. has its own specific configuration file for Xinetd; the files are
  41. located in the /etc/xinetd.d directory.
  42. %prep
  43. %setup -q
  44. #%patch0 -p0 -b .pie
  45. #%patch1 -p1 -b .libwrap
  46. %patch2 -p1 -b .tcp_rpc
  47. %build
  48. libtoolize --copy --force
  49. %configure --with-loadavg --with-inet6 --with-libwrap
  50. make
  51. %install
  52. rm -rf $RPM_BUILD_ROOT
  53. mkdir -p $RPM_BUILD_ROOT/etc/rc.d/init.d
  54. mkdir -p $RPM_BUILD_ROOT/%{_mandir}
  55. %makeinstall DAEMONDIR=$RPM_BUILD_ROOT/usr/sbin MANDIR=$RPM_BUILD_ROOT/%{_mandir}
  56. mkdir -p $RPM_BUILD_ROOT/etc/xinetd.d/
  57. install -m 755 %SOURCE1 $RPM_BUILD_ROOT/etc/rc.d/init.d/xinetd
  58. install -m 644 %SOURCE2 $RPM_BUILD_ROOT/etc/xinetd.conf
  59. install -m 755 %SOURCE3 $RPM_BUILD_ROOT/usr/sbin/inetdconvert
  60. install -m 644 %SOURCE4 $RPM_BUILD_ROOT/etc/xinetd.d/time
  61. install -m 644 %SOURCE5 $RPM_BUILD_ROOT/etc/xinetd.d/time-udp
  62. install -m 644 %SOURCE6 $RPM_BUILD_ROOT/etc/xinetd.d/daytime
  63. install -m 644 %SOURCE7 $RPM_BUILD_ROOT/etc/xinetd.d/daytime-udp
  64. install -m 644 %SOURCE8 $RPM_BUILD_ROOT/etc/xinetd.d/echo
  65. install -m 644 %SOURCE9 $RPM_BUILD_ROOT/etc/xinetd.d/echo-udp
  66. install -m 644 %SOURCE10 $RPM_BUILD_ROOT/etc/xinetd.d/chargen
  67. install -m 644 %SOURCE11 $RPM_BUILD_ROOT/etc/xinetd.d/chargen-udp
  68. install -m 644 %SOURCE13 $RPM_BUILD_ROOT/etc/xinetd.d/services
  69. rm -f $RPM_BUILD_ROOT/%{_mandir}/man8/itox*
  70. rm -f $RPM_BUILD_ROOT/usr/sbin/itox
  71. rm -f $RPM_BUILD_ROOT/%{_mandir}/man8/xconv.pl*
  72. rm -f $RPM_BUILD_ROOT/usr/sbin/xconv.pl
  73. rm -f $RPM_BUILD_ROOT/%{_mandir}/*.3
  74. mkdir -p $RPM_BUILD_ROOT/etc/sysconfig
  75. install -m 644 %SOURCE12 $RPM_BUILD_ROOT/etc/sysconfig/xinetd
  76. %clean
  77. rm -rf $RPM_BUILD_ROOT
  78. %post
  79. if [ $1 = 1 ]; then
  80. /sbin/chkconfig --add xinetd
  81. fi
  82. %preun
  83. if [ $1 = 0 ]; then
  84. /sbin/service xinetd stop > /dev/null 2>&1
  85. /sbin/chkconfig --del xinetd
  86. fi
  87. %postun
  88. if [ $1 -ge 1 ]; then
  89. /sbin/service xinetd condrestart >/dev/null 2>&1
  90. fi
  91. %files
  92. %defattr(-,root,root)
  93. %doc INSTALL CHANGELOG COPYRIGHT README xinetd/sample.conf
  94. %config(noreplace) /etc/xinetd.conf
  95. %config(noreplace) /etc/sysconfig/xinetd
  96. %{_sbindir}/xinetd
  97. %{_sbindir}/inetdconvert
  98. %{_mandir}/*/*
  99. %config /etc/rc.d/init.d/xinetd
  100. %config(noreplace) /etc/xinetd.d/*
  101. %changelog
  102. * Wed Apr 06 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.3.14-3
  103. - add BuildRequires: tcp_wrappers
  104. * Tue Apr 05 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.3.14-2
  105. - rebuild for Vine 6
  106. * Wed Oct 15 2008 Shu KONNO <owa@bg.wakwak.com> 2.3.14-1vl5
  107. - applied new versioning policy
  108. * Sun Nov 26 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.3.14-0vl2
  109. - fix dependencies ([VineSeed:11559,12368], <bts:398>)
  110. - remove Conflicts: inetd
  111. - add Provides: inetd
  112. * Wed Mar 1 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 2.3.14-0vl1
  113. - new upstream release
  114. - drop patch1
  115. - remove Provides: inetd
  116. * Sun Feb 20 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.3.13-2vl3
  117. - remove Obosletes: inetd, add Conflicts: inetd
  118. * Sat Feb 12 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 2.3.13-2vl2
  119. - rebuild
  120. * Sat Sep 18 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 2.3.13-2vl1
  121. - build for VineSeed
  122. - remove Epoch
  123. - remove patch0
  124. - remove Requires: filesystem >= 2.0.1
  125. - remove BuildRequires: glibc-devel (included in build-essential)
  126. * Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
  127. - rebuilt
  128. * Thu Jan 29 2004 Jay Fenlason <fenlason@redhat.com> 2.3.13-1
  129. - Upgrade to new upstream version, which obsoletes most patches.
  130. - Add new tcp_rpc patch, to turn on the nolibwrap flag on tcp rpc services,
  131. since libwrap cannot be used on them.
  132. * Sun Dec 28 2003 Florian La Roche <Florian.LaRoche@redhat.de>
  133. - use new technology to filter python dep for inetdconvert instead
  134. of changing the -x bit on file permissions
  135. * Wed Nov 12 2003 Jay Fenlason <fenlason@redhat.com> 2.3.12-3
  136. - build in HEAD for pre FC-2
  137. - merge from xinetd-3E-branch to fix bugzilla #103009
  138. also includes:
  139. New upstream version, which obsoletes most of my patches
  140. Remove %{_mandir}/man8/xconv.pl* fixing #90730
  141. Remove the servers service, which was removed from 2.3.12
  142. Change localization: instead of using en_US in /etc/rc.d/init.d/xinetd
  143. (overriding the system default and preventing any customization),
  144. /etc/sysconfig/xinetd sets XINETD_LANG, which is either a locale to use
  145. or the word "none", which causes all locale environment variables to be
  146. cleared before xinetd is started. This fixes #91403
  147. #77724 was fixed by the upgrade to 2.3.12
  148. include post 2.3.12 patch from upstream (originally by
  149. Matthias Andree <ma+xi@dt.e-technik.uni-dortmund.de>) to add a new
  150. "libwrap" parameter.
  151. This closes bugs (#91555,#91135,#77724) by making xinetd's behavior
  152. documented and user-configurable.
  153. Removed the old libwrap/TCP/wait patch. If anyone actually cares,
  154. they can add "flags = NOLIBWRAP" to the configuration of TCP/wait
  155. services to get the old behavior.
  156. Mark /etc/sysconfig/xinetd as a config file in xinetd.spec
  157. Add pie support
  158. * Tue Sep 23 2003 Florian La Roche <Florian.LaRoche@redhat.de>
  159. - allow compiling without tcp_wrappers
  160. * Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
  161. - rebuilt
  162. * Mon Feb 24 2003 Elliot Lee <sopwith@redhat.com>
  163. - rebuilt
  164. * Fri Feb 21 2003 Jay Fenlason <fenlason@redhat.com> 2.3.10-5
  165. - Merge various patches from xinetd-CVS, since 2.3.11 won't be
  166. out in time for our Red Hat Linux release. One improves range checking
  167. on file descriptors. (A potential security problem.) Another
  168. fixes bugzilla #84840: tcpmux doesn't work at all. A third improves
  169. error checking on tcpmux service entries. The last improves error
  170. checking on service startup.
  171. * Tue Feb 11 2003 Nalin Dahyabhai <nalin@redhat.com> 2.3.10-4
  172. - rebuild
  173. * Mon Feb 10 2003 Nalin Dahyabhai <nalin@redhat.com> 2.3.10-3
  174. - rebuild
  175. * Wed Jan 22 2003 Tim Powers <timp@redhat.com>
  176. - rebuilt
  177. * Tue Jan 7 2003 Jay Fenlason <fenlason.redhat.com> 2.3.10-1
  178. - Fix #81770, #80612, #79219, #79274: New upstream version
  179. - May also fix #79085, #78903, #78699, #77781, #77760, #76727
  180. - ... #73805, #60049, #58881, #58855
  181. - Fix #79999: remove xinetd-ipv6 executable
  182. - Fix #82021: changed preun to turn off the server
  183. - try to Fix #74198 by quoting "${NETWORKING}" in xinetd.init
  184. * Tue Dec 10 2002 Dan Walsh <dwalsh@redhat.com> 2.3.7-6
  185. - Fix Service startup script to check for id=0
  186. * Tue Nov 19 2002 Bill Nottingham <notting@redhat.com> 2.3.7-5
  187. - add new stream_wait patch (#74696)
  188. * Wed Nov 13 2002 Dan Walsh <dwalsh@redhat.com> 2.3.7-4
  189. - Fix Service Descriptions
  190. * Wed Nov 13 2002 Dan Walsh <dwalsh@redhat.com> 2.3.7-3
  191. - Fix #77710 Fix Service Descriptions
  192. * Thu Aug 15 2002 Trond Eivind Glomsr.A綬d <teg@redhat.com> 2.3.7-2
  193. - Fix #71506 (mixed internal services)
  194. * Mon Aug 12 2002 Trond Eivind Glomsr綬d <teg@redhat.com> 2.3.7-1
  195. - 2.3.7 - this fixes #70504
  196. * Mon Aug 5 2002 Trond Eivind Glomsr綬d <teg@redhat.com> 2.3.5-6
  197. - Initscript fixes (#70730)
  198. * Wed Jul 17 2002 Trond Eivind Glomsr綬d <teg@redhat.com> 2.3.5-5
  199. - Add patch for improved cross compiling (#55927)
  200. * Wed Jul 3 2002 Trond Eivind Glomsr綬d <teg@redhat.com> 2.3.5-4
  201. - #67701
  202. * Wed Jun 26 2002 Trond Eivind Glomsr綬d <teg@redhat.com> 2.3.5=3
  203. - Fix maks for access control (#65743)
  204. - some fixes for config file parsing
  205. * Fri Jun 21 2002 Tim Powers <timp@redhat.com>
  206. - automated rebuild
  207. * Thu May 30 2002 Trond Eivind Glomsr綬d <teg@redhat.com> 2.3.5-1
  208. - 2.3.5
  209. * Thu May 23 2002 Tim Powers <timp@redhat.com>
  210. - automated rebuild
  211. * Mon Apr 22 2002 Trond Eivind Glomsr綬d <teg@redhat.com>
  212. - 2.3.4 final (bah, never announced... has been out for 3 weeks)
  213. * Thu Apr 4 2002 Trond Eivind Glomsr綬d <teg@redhat.com> 2.3.4-0.8
  214. - Add a patch to avoid fam haunting the system
  215. * Tue Apr 2 2002 Trond Eivind Glomsr綬d <teg@redhat.com> 2.3.4-0.7
  216. - Add patch from Alex Larson in order not to use tcp_wrappers on tcp/wait -
  217. they'd always be 0.0.0.0
  218. * Thu Mar 28 2002 Trond Eivind Glomsr綬d <teg@redhat.com> 2.3.4-0.6
  219. - 2002-03-26. 2.3.4 final RSN
  220. * Fri Mar 1 2002 Trond Eivind Glomsr綬d <teg@redhat.com> 2.3.4-0.5
  221. - 2002-02-28-1
  222. * Sun Jan 6 2002 Trond Eivind Glomsr綬d <teg@redhat.com> 2.3.4-0.4
  223. - 2002-01-04
  224. - Update URLs
  225. * Fri Dec 14 2001 Trond Eivind Glomsr綬d <teg@redhat.com> 2.3.4-0.3
  226. - 2001-12-13
  227. * Mon Dec 3 2001 Trond Eivind Glomsr綬d <teg@redhat.com> 2.3.4-0.2
  228. - 2001-12-03 (fixes #57001, #55738)
  229. * Fri Nov 30 2001 Trond Eivind Glomsr綬d <teg@redhat.com> 2.3.4-0.1
  230. - 2001-11-29, which fixes #56487
  231. - Add configuration files for the xinetd internal services listing
  232. current servers and services. It's off by default, and restricted
  233. to localhost when enabled (#52707)
  234. - Use SIGHUP for configuration reload (change in program)
  235. * Wed Aug 29 2001 Trond Eivind Glomsr綬d <teg@redhat.com> 2.3.3-1
  236. - 2.3.3
  237. - parser patch now obsolete
  238. * Thu Aug 23 2001 Trond Eivind Glomsr綬d <teg@redhat.com> 2.3.2-1
  239. - 2.3.2, which contains the memory overwrite patch,
  240. the audit fixes, the conn_free patch and the filelog patch.
  241. - Fix handling of rpc_version with ranges (like "1-2") (#51737)
  242. * Wed Aug 15 2001 Trond Eivind Glomsr綬d <teg@redhat.com> 2.3.0-7
  243. - Don't apply the skipjunk patch anymore - xinetd now skips files with ".",
  244. which include .rpmsave etc.
  245. - fix memory overwrite bug in env.c:grow()
  246. * Mon Aug 13 2001 Trond Eivind Glomsr綬d <teg@redhat.com> 2.3.0-6
  247. - conn_free was called twice...
  248. - add cps = 25 30 to xinetd.conf. Thus, if a service has many
  249. connections (25 in a 1 second period), it will be disabled
  250. for 30 seconds. Without this, 10 connections to a service in
  251. a second would permanently disable the service (#49122)
  252. * Thu Aug 9 2001 Trond Eivind Glomsr綬d <teg@redhat.com> 2.3.0-5
  253. - add the patch from "Solar Designer"'s audit
  254. * Thu Aug 9 2001 Trond Eivind Glomsr綬d <teg@redhat.com> 2.3.0-4
  255. - Make it handle stop and status when IPv6 is enabled (#49621)
  256. * Mon Jul 23 2001 Trond Eivind Glomsr綬d <teg@redhat.com>
  257. - Add IPv6 support - separate binary, invoked if
  258. NETWORKING_IPV6 is set (#49621)
  259. - Make inetdconvert handle the "/usr/sbin/in.telnetd in.telnetd"
  260. scenario of inetd (#46449)
  261. * Tue Jul 3 2001 Trond Eivind Glomsr綬d <teg@redhat.com>
  262. - redo skipjunkfile patch
  263. * Fri Jun 29 2001 Trond Eivind Glomsr綬d <teg@redhat.com>
  264. - 2.3.0
  265. * Thu Jun 21 2001 Trond Eivind Glomsr綬d <teg@redhat.com>
  266. - 2.1.8.9pre16
  267. * Mon Jun 4 2001 Trond Eivind Glomsr綬d <teg@redhat.com>
  268. - Remove explicit dependancy on initscripts version
  269. * Sun May 20 2001 Trond Eivind Glomsr綬d <teg@redhat.com>
  270. - 2.1.8.9pre15, which should fix wait=yes with tcp (linuxconf is
  271. the only program I know of using this)
  272. - fix some problems with UDP internal services (#38669)
  273. - make /etc/xinetd.conf noreplace
  274. * Wed Apr 25 2001 Trond Eivind Glomsr綬d <teg@redhat.com>
  275. - Add the tcp wait=yes patch from the xinetd version in a different tree
  276. * Wed Apr 4 2001 Trond Eivind Glomsr綬d <teg@redhat.com>
  277. - Add /etc/sysconfig/xinetd so users can add extra options (#34321)
  278. * Tue Feb 27 2001 Preston Brown <pbrown@redhat.com>
  279. - noreplace the xinetd.d files
  280. * Mon Feb 5 2001 Preston Brown <pbrown@redhat.com>
  281. - built against newer tcp_wrappers that fixes name resolution problem (#16949)
  282. * Mon Feb 5 2001 Trond Eivind Glomsr綬d <teg@redhat.com>
  283. - Patch from nalin@redhat.com for terminating the environment variables properly
  284. * Tue Jan 30 2001 Trond Eivind Glomsr綬d <teg@redhat.com>
  285. - remove PID from log_on_failure flags (#22687)
  286. * Tue Jan 23 2001 Trond Eivind Glomsr綬d <teg@redhat.com>
  287. - improve gettextization
  288. - add "UNLISTED" to the internal udp services (#24279)
  289. * Thu Jan 18 2001 Trond Eivind Glomsr綬d <teg@redhat.com>
  290. - 2.1.8.9pre14
  291. * Wed Jan 17 2001 Trond Eivind Glomsr綬d <teg@redhat.com>
  292. - gettextize
  293. * Sat Dec 30 2000 Jeff Johnson <jbj@redhat.com>
  294. - remove python dependency.
  295. * Tue Dec 26 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  296. - remove RECORD from xinetd.conf for security reasons
  297. (no known holes, but better safe than sorry #22687)
  298. * Mon Dec 04 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  299. - unset a couple of environment variables(HOME,MAIL) in the initscript.
  300. This should avoid problems like bug #21663
  301. * Fri Dec 01 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  302. - rebuild
  303. * Tue Nov 14 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  304. - 2.1.8.9pre13, which should fix #19355
  305. - changes to initscript - set all locale environment variables
  306. to en_US, as the server doesn't know what locale the client
  307. expects and error messages can otherwise be confusing
  308. (partially #20566)
  309. * Thu Nov 09 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  310. - fix mismatch in documentation vs. reality, introduced
  311. when we changed the behaviour of the access control
  312. to use server names (#20567)
  313. * Tue Oct 31 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  314. - obsolete netkit-base, which was inetd's home until 6.2
  315. * Thu Oct 19 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  316. - 2.1.8.9pre12, which has a new "-stayalive" option so
  317. xinetd stays alive even if no services are enabled.
  318. - use the above in the initscript (#18819)
  319. * Tue Oct 17 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  320. - 2.1.8.9pre11, which includes the previous bugfixes.
  321. - don't convert the internal services, include
  322. such files with xinetd (#17331, #18899)
  323. * Mon Oct 09 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  324. - Add patch to fix segfault problem (#18686)
  325. * Fri Oct 06 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  326. - apply patch from nalin@redhat.com for handling tcp
  327. connections with wait=yes properly
  328. * Tue Sep 26 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  329. - add explicit dependency on a modern version of initscripts
  330. (#17533)
  331. * Wed Aug 30 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  332. - 2.1.8.9pre10 - remove tcpwrapper and pidfile patches,
  333. as they are now in.
  334. - change default startup position to 56, so it
  335. starts after bind (#17047)
  336. * Thu Aug 18 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  337. - use the server name not the service name for libwrap
  338. checking (#16516). The new way was better, but
  339. this is sacrificed so old systems will continue to work
  340. and the documentation for tcp_wrappers can be correct.
  341. * Wed Aug 16 2000 Than Ngo <than@redhat.com>
  342. - fix initscript, test network file before source it (Bug #16247)
  343. * Tue Aug 15 2000 Trond Eivind Glomsr綬d <teg@redhat.com
  344. - make the pidfile 0644, not 0300 (#16256)
  345. * Tue Aug 08 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  346. - added support for "-pidfile" option (#15531)
  347. * Fri Aug 04 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  348. - added patch to ignore .rpmsave, .rpmorig, .rpmnew, ~
  349. suffixed files (#15304)
  350. * Thu Aug 03 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  351. - 2.1.8.9pre9, old patches are now integrated.
  352. * Wed Aug 02 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  353. - fix converting of "wait" argument (#13884)
  354. - remove tcpd and /usr/sbin/tcpd from inetd.conf services
  355. before converting - xinetd is linked against tcp_wrappers
  356. * Mon Jul 31 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  357. - fix linuxconf restart problem (#14856)
  358. - fix conditional restart
  359. - mark /etc/xinetd.conf as a configuration file
  360. * Tue Jul 25 2000 Bill Nottingham <notting@redhat.com>
  361. - um, we *need* to prereq /etc/init.d
  362. * Mon Jul 24 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  363. - Don't require /etc/init.d
  364. * Sat Jul 22 2000 Bill Nottingham <notting@redhat.com>
  365. - rebuild
  366. * Tue Jul 18 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  367. - fix the sections of the man pages (#14244)
  368. * Tue Jul 18 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  369. - remove itox, as it wouldn't do the right thing with our
  370. configuration
  371. - same with xconv.pl
  372. - some changes to the installation process
  373. * Mon Jul 17 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  374. - move initscript back to /etc/rc.d/init.d
  375. * Fri Jul 14 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  376. - change process name in init file
  377. * Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
  378. - automatic rebuild
  379. * Fri Jul 7 2000 Nalin Dahyabhai <nalin@redhat.com>
  380. - start the daemon with the "-reuse" flag
  381. * Thu Jul 06 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  382. - "Prereq:", not "Requires:" for /etc/init.d
  383. * Wed Jul 06 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  384. - require /etc/init.d
  385. * Wed Jul 5 2000 Florian La Roche <Florian.LaRoche@redhat.com>
  386. - upper the number of instances to 60
  387. * Sun Jul 2 2000 Nalin Dahyabhai <nalin@redhat.com>
  388. - fix a memory-allocation bug
  389. * Wed Jun 28 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  390. - 2.1.8.9pre8
  391. * Wed Jun 21 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  392. - moved to /etc/init.d
  393. * Wed Jun 21 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  394. - changed specfile and initfile to implement conditional
  395. restart
  396. * Sun Jun 18 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  397. - 2.1.8.9pre7
  398. - now obsoletes inetd
  399. - use %%{_tmppath}
  400. * Sun Jun 04 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  401. - 2.1.8.9pre6
  402. - added converter script which can convert specified or
  403. remaing uncoverted services
  404. - use %%{_mandir}
  405. - removed +x on xinetd.conf
  406. * Wed May 24 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  407. - 2.1.8.9pre4
  408. - authpriv patch no longer needed
  409. * Tue May 23 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  410. - /etc/xinetd.d is now part of the filesystem package
  411. - more fixes to xinetd.init
  412. * Mon May 22 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  413. - fixed some obvious bugs in xinetd.init
  414. - added a default xinetd.conf
  415. - patched xinetd to understand LOG_AUTHPRIV
  416. * Fri May 19 2000 Trond Eivind Glomsr綬d <teg@redhat.com>
  417. - updated version
  418. - removed a define %ver (we already have %version)
  419. - removed some extra CFLAGS declarations
  420. - added configuration directory, /etc/xinetd.d
  421. * Mon Feb 21 2000 Tim Powers <timp@redhat.com>
  422. - fixed broken postun sections, should have been *preun*
  423. - fixed broken gzip of manpages
  424. * Wed Jan 19 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  425. - 2.1.8.8p8
  426. - Fix the init script (Bug #7277)
  427. - remove our patches (no longer required)
  428. * Tue Sep 21 1999 Bill Nottingham <notting@redhat.com>
  429. - add -lnsl
  430. * Tue Sep 7 1999 Tim Powers <timp@redhat.com>
  431. - modification top install routine
  432. * Mon Jul 26 1999 Tim Powers <timp@redhat.com>
  433. - updated source to 2.1.8.6b6
  434. - built for 6.1
  435. * Mon Apr 26 1999 Bill Nottingham <notting@redhat.com>
  436. - update to 2.1.8.6b5
  437. - build for PowerTools
  438. * Mon Jan 10 1999 Bill Nottingham <notting@redhat.com>
  439. - update to 2.1.8.5p2
  440. * Tue Dec 1 1998 Bill Nottingham <notting@redhat.com>
  441. - intial build