Blame SPECS/xinetd.spec

319196
Summary: A secure replacement for inetd
319196
Name: xinetd
319196
Version: 2.3.15
319196
Release: 24%{?dist}
319196
License: xinetd
319196
Group: System Environment/Daemons
319196
Epoch: 2
319196
URL: https://github.com/xinetd-org/xinetd
319196
# source can be downloaded at
319196
# https://github.com/xinetd-org/xinetd/archive/xinetd-2-3-15.tar.gz
319196
Source: xinetd-%{version}.tar.gz
319196
Source1: xinetd.service
319196
Patch0: xinetd-2.3.15-pie.patch
319196
Patch4: xinetd-2.3.14-bind-ipv6.patch
319196
Patch6: xinetd-2.3.14-man-section.patch
319196
Patch7: xinetd-2.3.15-PIE.patch
319196
Patch8: xinetd-2.3.14-ident-bind.patch
319196
Patch9: xinetd-2.3.14-readable-debuginfo.patch
319196
# Patch for clean reconfiguration using newer versions of autotools
319196
Patch10: xinetd-2.3.14-autoconf.patch
319196
# Completely rewritten socket handling code (it uses poll() instead
319196
# of select() function)
319196
Patch11: xinetd-2.3.14-poll.patch
319196
# New configuration option (limit for files opened by child process)
319196
Patch12: xinetd-2.3.14-file-limit.patch
319196
# When using tcpmux, xinetd ended up with sigsegv
319196
# (detection of NULL pointer in pollfd structure was missing)
319196
Patch13: xinetd-2.3.14-tcpmux.patch
319196
# When service is destroyed, destroy also its
319196
# file descriptor in array given to poll function
319196
Patch14: xinetd-2.3.14-clean-pfd.patch
319196
# xinetd confuses ipv6 and ipv4 port parsing
319196
# - furtunately, they have the same format, so everything
319196
#   works even without this patch
319196
Patch15: xinetd-2.3.14-ipv6confusion.patch
319196
# This fixes bug #593904 - online reconfiguration caused log message
319196
# flood when turning off UDP service
319196
Patch16: xinetd-2.3.14-udp-reconfig.patch
319196
Patch18: xinetd-2.3.14-rpc-specific-port.patch
319196
Patch19: xinetd-2.3.14-signal-log-hang.patch
319196
Patch20: xinetd-2.3.14-fix-type-punned-ptr.patch
319196
# Fix leaking file descriptors and pfd_array wasting
319196
# This fixes #702670
319196
Patch21: xinetd-2.3.14-leaking-fds.patch
319196
# Fix memory corruption when loading a large number of services
319196
# This fixes #720390
319196
Patch22: xinetd-2.3.14-many-services.patch
319196
# Remove realloc of fds that was causing memory corruption
319196
Patch23: xinetd-2.3.14-realloc-remove.patch
319196
# Fix leaking descriptor when starting a service fails
319196
Patch24: xinetd-2.3.14-leaking-fds-2a.patch
319196
# Fix #770858 - Instances limit in xinetd can be easily bypassed
319196
Patch25: xinetd-2.3.14-instances.patch
319196
# Fix #809272 - Service disabled due to bind failure
319196
Patch26: xinetd-2.3.14-retry-svc-activate-in-cps-restart.patch
319196
Patch27: xinetd-2.3.15-bad-port-check.patch
319196
# Fix #977873 - Use full path to server when checking selinux context
319196
Patch28: xinetd-2.3.15-context-exepath.patch
319196
Patch29: xinetd-2.3.15-creds.patch
319196
# Fix #1033528 - xinetd segfaults when connecting to tcpmux service
319196
Patch30: xinetd-2.3.15-tcpmux-nameinargs-disable-service.patch
319196
Patch31: xinetd-2.3.15-covscan.patch
319196
319196
BuildRequires: autoconf, automake, libtirpc-devel
319196
BuildRequires: libselinux-devel >= 1.30
319196
BuildRequires: systemd-units
319196
Requires(post): systemd-sysv
319196
Requires(post): systemd-units
319196
Requires(preun): systemd-units
319196
Requires(postun): systemd-units
319196
Requires: filesystem >= 2.0.1, setup
319196
Provides: inetd
319196
319196
319196
%description
319196
Xinetd is a secure replacement for inetd, the Internet services
319196
daemon. Xinetd provides access control for all services based on the
319196
address of the remote host and/or on time of access and can prevent
319196
denial-of-access attacks. Xinetd provides extensive logging, has no
319196
limit on the number of server arguments, and lets you bind specific
319196
services to specific IP addresses on your host machine. Each service
319196
has its own specific configuration file for Xinetd; the files are
319196
located in the /etc/xinetd.d directory.
319196
319196
%prep
319196
%setup -q
319196
319196
# SPARC/SPARC64 needs -fPIE/-PIE
319196
# This really should be detected by configure.
319196
%ifarch sparcv9 sparc64
319196
%patch7 -p1 -b .PIE
319196
%else
319196
%patch0 -p1 -b .pie
319196
%endif
319196
%patch4 -p1 -b .bind
319196
%patch6 -p1 -b .man-section
319196
%patch8 -p1 -b .ident-bind
319196
%patch9 -p1 -b .readable-debuginfo
319196
%patch10 -p1 -b .autoconf
319196
%patch11 -p1 -b .poll
319196
%patch12 -p1 -b .file-limit
319196
%patch13 -p1 -b .tcpmux
319196
%patch14 -p1 -b .clean-pfd
319196
%patch15 -p1 -b .ipv6confusion
319196
%patch16 -p1 -b .udp-reconfig
319196
%patch18 -p1 -b .rpc-specific-port
319196
%patch19 -p1 -b .signal-log-hang
319196
%patch20 -p1 -b .fix-type-punned-ptr
319196
%patch21 -p1 -b .leaking-fds
319196
%patch22 -p1 -b .many-services
319196
%patch23 -p1 -b .realloc-remove
319196
%patch24 -p1 -b .leaking-fds-2a
319196
%patch25 -p1 -b .instances
319196
%patch26 -p1 -b .retry-svc-activate
319196
%patch27 -p1 -b .bad-port-check
319196
%patch28 -p1 -b .context-exepath
319196
%patch29 -p1 -b .creds
319196
%patch30 -p1
319196
%patch31 -p1
319196
319196
aclocal
319196
autoconf
319196
319196
%build
319196
# -pie -PIE flags added by separate patches
319196
%configure --with-loadavg --with-inet6 --with-labeled-networking
319196
make CFLAGS="$CFLAGS $(pkg-config --cflags libtirpc)" LDFLAGS="$LDFLAGS $(pkg-config --libs libtirpc) -Wl,-z,relro,-z,now"
319196
319196
%install
319196
mkdir -p $RPM_BUILD_ROOT%{_unitdir}
319196
mkdir -m 700 -p $RPM_BUILD_ROOT/etc/xinetd.d/
319196
# Remove unneeded service
319196
rm -f contrib/xinetd.d/ftp-sensor
319196
%make_install DAEMONDIR=$RPM_BUILD_ROOT/usr/sbin MANDIR=$RPM_BUILD_ROOT/%{_mandir}
319196
install -m 600 contrib/xinetd.conf $RPM_BUILD_ROOT/etc
319196
install -m 600 contrib/xinetd.d/* $RPM_BUILD_ROOT/etc/xinetd.d
319196
install -m 644 %{SOURCE1} $RPM_BUILD_ROOT%{_unitdir}
319196
319196
rm -f $RPM_BUILD_ROOT/%{_mandir}/man8/itox*
319196
rm -f $RPM_BUILD_ROOT/usr/sbin/itox
319196
rm -f $RPM_BUILD_ROOT/%{_mandir}/man8/xconv.pl*
319196
rm -f $RPM_BUILD_ROOT/usr/sbin/xconv.pl
319196
319196
%post
319196
%systemd_post xinetd.service
319196
319196
%preun
319196
%systemd_preun xinetd.service
319196
319196
%postun
319196
%systemd_postun_with_restart xinetd.service
319196
319196
%files
319196
%doc CHANGELOG COPYRIGHT README xinetd/sample.conf contrib/empty.conf
319196
%config(noreplace) /etc/xinetd.conf
319196
%{_unitdir}/xinetd.service
319196
%config(noreplace) /etc/xinetd.d/*
319196
/usr/sbin/xinetd
319196
%{_mandir}/*/*
319196
319196
%changelog
319196
* Mon Aug  5 2019 Jan Synáček <jsynacek@redhat.com> - 2:2.3.15-24
319196
- fix covscan (#1607030)
319196
319196
* Tue May 22 2018 Jan Synáček <jsynacek@redhat.com> - 2:2.3.15-23
319196
- fix compilation, missing rpc headers (#1580970)
319196
319196
* Mon Dec  4 2017 Jan Synáček <jsynacek@redhat.com> - 2:2.3.15-22
319196
- remove build dependency on tcp_wrappers (#1518797)
319196
319196
* Tue Nov 07 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2:2.3.15-21
319196
- Remove old crufty coreutils requires
319196
319196
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.3.15-20
319196
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
319196
319196
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.3.15-19
319196
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
319196
319196
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.3.15-18
319196
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
319196
319196
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.3.15-17
319196
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
319196
319196
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:2.3.15-16
319196
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
319196
319196
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:2.3.15-15
319196
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
319196
319196
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:2.3.15-14
319196
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
319196
319196
* Mon Feb 24 2014 Jan Synáček <jsynacek@redhat.com> - 2:2.3.15-13
319196
- drop sysconfig-related stuff
319196
- add documentation reference to the service file
319196
319196
* Tue Jan 14 2014 Jan Synáček <jsynacek@redhat.com> - 2:2.3.15-12
319196
- fix bad URL
319196
319196
* Fri Dec 13 2013 Jan Synáček <jsynacek@redhat.com> - 2:2.3.15-11
319196
- fixup of the previous patch
319196
- Resolves: #1042652
319196
- Related: #1033528
319196
319196
* Tue Dec  3 2013 Jan Synáček <jsynacek@redhat.com> - 2:2.3.15-10
319196
- xinetd segfaults when connecting to tcpmux service
319196
- Resolves: #1033528
319196
319196
* Fri Oct  4 2013 Jan Synáček <jsynacek@redhat.com> - 2:2.3.15-9
319196
- xinetd should not depend on NetworkManager-wait-online
319196
- Resolves: #1002294
319196
319196
* Thu Oct  3 2013 Jan Synáček <jsynacek@redhat.com> - 2:2.3.15-8
319196
- Honor user and group directives
319196
- Resolves: CVE-2013-4342
319196
319196
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:2.3.15-7
319196
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
319196
319196
* Wed Jun 26 2013 Jan Synáček <jsynacek@redhat.com> - 2:2.3.15-6
319196
- Use full path to server when checking selinux context
319196
- Resolves: #977873
319196
319196
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:2.3.15-5
319196
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
319196
319196
* Mon Sep 03 2012 Jan Synáček <jsynacek@redhat.com> - 2:2.3.15-4
319196
- Change config files' permissions
319196
- Resolves: #853144
319196
319196
* Wed Aug 22 2012 Jan Synáček <jsynacek@redhat.com> - 2:2.3.15-3
319196
- Replace the makeinstall macro
319196
- Add systemd-rpm macros
319196
- Resolves: #850370
319196
319196
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:2.3.15-2
319196
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
319196
319196
* Mon May 14 2012 Jan Synáček <jsynacek@redhat.com> - 2:2.3.15-1
319196
- Update to 2.3.15
319196
- Drop patches merged by upstream
319196
  (-log-crash, -tcp_rpc, -label, -contextconf, -ssize_t)
319196
- Update -pie, -PIE, -poll patch
319196
- Resolves: #820927
319196
- Add -bad-port-check patch
319196
319196
* Fri Apr 13 2012 Jan Synáček <jsynacek@redhat.com> - 2:2.3.14-46
319196
- Fix: service file: avoid problems when name resolution is not ready
319196
- Resolves: #748931
319196
319196
* Fri Apr 13 2012 Jan Synáček <jsynacek@redhat.com> - 2:2.3.14-45
319196
- Fix: Service disabled due to bind failure
319196
- Update patch: xinetd-2.3.14-leaking-fds-2.patch
319196
- Resolves: #809272
319196
319196
* Mon Mar 05 2012 Jan Synáček <jsynacek@redhat.com> - 2:2.3.14-44
319196
- Fix: Instances limit in xinetd can be easily bypassed
319196
- Resolves: #770858
319196
319196
* Mon Mar 05 2012 Jan Synáček <jsynacek@redhat.com> - 2:2.3.14-43
319196
- Fix xinetd.service permissions
319196
- Remove useless INSTALL from package documentation
319196
- Implement reload in xinetd.service
319196
319196
* Fri Mar 02 2012 Jan Synáček <jsynacek@redhat.com> - 2:2.3.14-42
319196
- Fix leaking descriptor when starting a service fails (#795188)
319196
319196
* Wed Jan 18 2012 Jan Synáček <jsynacek@redhat.com> - 2:2.3.14-41
319196
- Remove realloc inside svc_activate that was causing memory corruption
319196
- Number of alloc'd file descriptors is now determined by system limits (ulimit -n)
319196
- Add patch -realloc-remove
319196
319196
* Tue Jan 17 2012 Jan Synáček <jsynacek@redhat.com> - 2:2.3.14-40
319196
- Fix memory corruption when loading a large number of services
319196
- Resolves #720390
319196
319196
* Mon Jan 16 2012 Jan Synáček <jsynacek@redhat.com> - 2:2.3.14-39
319196
- Fix leaking file descriptors
319196
- Resolves: #702670
319196
319196
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:2.3.14-38
319196
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
319196
319196
* Mon Sep 12 2011 Tom Callaway <spot@fedoraproject.org> - 2:2.3.14-37
319196
- covert to systemd
319196
319196
* Thu Apr 21 2011 Vojtech Vitek (V-Teq) <vvitek@redhat.com> - 2:2.3.14-36
319196
- Fix build warning about "dereferencing type-punned pointer"
319196
  Related: #695674
319196
- Avoid possible hang while logging an unexpected signal
319196
  Related: #501604
319196
- Let RPC services bind to a specific port
319196
  Related: #624800
319196
319196
* Fri Feb 18 2011 Vojtech Vitek (V-Teq) <vvitek@redhat.com> - 2:2.3.14-35
319196
- fix crash when application's logfile hit size limit
319196
  Related: #244063
319196
319196
* Mon Feb 14 2011 Vojtech Vitek (V-Teq) <vvitek@redhat.com> - 2:2.3.14-34
319196
- Add -Wl,-z,relro,-z,now to LDFLAGS
319196
319196
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:2.3.14-33
319196
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
319196
319196
* Wed Jun 02 2010 Jan Zeleny <jzeleny@redhat.com> - 2:2.3.14-32
319196
- fixed log message flooding when turning off UDP service during online
319196
  reconfiguration (#593904)
319196
319196
* Fri Mar 19 2010 Jan Zeleny <jzeleny@redhat.com> - 2:2.3.14-31
319196
- corrected port parsing code (IPv4 and IPv6 were switched)
319196
- commented patches I'm familiar with in spec file
319196
319196
* Fri Mar 19 2010 Jan Zeleny <jzeleny@redhat.com> - 2:2.3.14-30
319196
- fixed flooding log with error messages when disabled service at runtime
319196
- updated release number to 30 to prevent rpm from detecting this as downgrade
319196
319196
* Thu Jan 21 2010 Jan Zeleny <jzeleny@redhat.com> - 2:2.3.14-28
319196
- fixed issue with tcpmux service (#543968)
319196
319196
* Tue Oct 20 2009 Jan Zeleny <jzeleny@redhat.com> - 2:2.3.14-27
319196
- last update of init script modified to work with SELinux correctly
319196
- added support for new configuration option - file limit for service
319196
319196
* Mon Oct 12 2009 Jan Zeleny <jzeleny@redhat.com> - 2:2.3.14-26
319196
- updated init script (LSB compliance - #528154)
319196
319196
* Thu Sep 17 2009 Jan Zeleny <jzeleny@redhat.com> - 2:2.3.14-25
319196
- correction of last patch replacing select() with poll()
319196
319196
* Mon Sep 14 2009 Jan Zeleny <jzeleny@redhat.com> - 2:2.3.14-24
319196
- select() function and it's supporting macros replaced by poll() and it's supporting macros
319196
- added patch of configure.in for clean compilation
319196
319196
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:2.3.14-23
319196
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
319196
319196
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:2.3.14-22
319196
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
319196
319196
* Thu Sep 18 2008 Jan Safranek <jsafranek@redhat.com> - 2:2.3.14-21
319196
- fix glitches found during package review (#226560)
319196
- make all files in .debuginfo package readable by everyone
319196
319196
* Wed Jul 16 2008 Jan Safranek <jsafranek@redhat.com> - 2:2.3.14-20
319196
- fix wrong bind() call (#448069)
319196
319196
* Thu May 29 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2:2.3.14-19
319196
- fix sparc fPIE issues
319196
319196
* Thu Jan 31 2008 Jan Safranek <jsafranek@redhat.com> - 2:2.3.14-18
319196
- fixed LABEL flag (#430929)
319196
319196
* Wed Jan 30 2008 Jan Safranek <jsafranek@redhat.com> - 2:2.3.14-17
319196
- fixing init scripts (#430816)
319196
319196
* Mon Jan 28 2008 Jan Safranek <jsafranek@redhat.com> - 2:2.3.14-16
319196
- xinetd.log man page is in the right section now (#428812)
319196
319196
* Thu Sep  6 2007 Jan Safranek <jsafranek@redhat.com> - 2:2.3.14-15
319196
- initscript made LSB compliant (#247099)
319196
319196
* Thu Sep  6 2007 Jan Safranek <jsafranek@redhat.com> - 2:2.3.14-14
319196
- removed inetdconvert script, nobody is using inetd
319196
319196
* Wed Aug 22 2007 Jan Safranek <jsafranek@redhat.com> - 2:2.3.14-13
319196
- updated license field
319196
319196
* Wed May 16 2007 Jan Safranek <jsafranek@redhat.com> - 2:2.3.14-12
319196
- bind IPv6 socket by default and switch to IPv4 on error
319196
  (bz#195265)
319196
- service xinetd status returns actual status (bz#232887)
319196
- use ssize_t instead of int (bz#211776)
319196
319196
* Mon Dec  4 2006 Thomas Woerner <twoerner@redhat.com> - 2:2.3.14-11
319196
- tcp_wrappers has a new devel and libs sub package, therefore changing build
319196
  requirement for tcp_wrappers to tcp_wrappers-devel
319196
319196
* Fri Dec 01 2006 James Antill <james.antill@redhat.com> - 2:2.3.14-9
319196
- Fix getpeercon() for LABELED networking MLS environments
319196
- Resolves: rhbz#209379
319196
319196
* Sun Oct 01 2006 Jesse Keating <jkeating@redhat.com> - 2:2.3.14-8
319196
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
319196
319196
* Wed Sep 20 2006 Steve Grubb <sgrubb@redhat.com> 2:2.3.14-7
319196
- Revised labeled networking patch to not allow redirection
319196
319196
* Tue Aug 29 2006 Steve Grubb <sgrubb@redhat.com> 2:2.3.14-6
319196
- Revised labeled networking patch again
319196
319196
* Thu Aug 24 2006 Steve Grubb <sgrubb@redhat.com> 2:2.3.14-5
319196
- Revised labeled networking patch
319196
319196
* Wed Aug 23 2006 Steve Grubb <sgrubb@redhat.com> 2:2.3.14-4
319196
- Added labeled networking patch
319196
319196
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2:2.3.14-3.1
319196
- rebuild
319196
319196
* Fri Jun 16 2006 Steve Grubb <sgrubb@redhat.com> 2:2.3.14-3
319196
- Rework spec file & use xinetd's sevice config files
319196
319196
* Fri Mar 24 2006 Jay Fenlason <fenlason@redhat.com> 2:2.3.14-2
319196
- Upgrade to new upstream version.  This obsoletes the -libwrap,
319196
  -rpc, -banner, -bug140084 and -gcc4 patches.
319196
319196
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2:2.3.13-6.2.1
319196
- bump again for double-long bug on ppc(64)
319196
319196
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2:2.3.13-6.2
319196
- rebuilt for new gcc4.1 snapshot and glibc changes
319196
319196
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
319196
- rebuilt
319196
319196
* Thu Feb 17 2005 Jay Fenlason <fenlason@redhat.com> 2:2.3.13-6
319196
- include new patch to allow gcc4 to compile xinetd.
319196
319196
* Sat Jan 8 2005 Jay Fenlason <fenlason@redhat.com> 2:2.3.13-4
319196
- Added patch committed to upstream CVS to fix bz#140084
319196
  (error logging accidentally using one of [012] as the syslog
319196
  descriptor)
319196
319196
* Fri Jun 18 2004 Jay Fenlason <fenlason@redhat.com> 2:2.3.13-3
319196
- Add patch to fix #126242: banner's don't work
319196
319196
* Thu Jun 17 2004 Jay Fenlason <fenlason@redhat.com>
319196
- Remove the configuration for the no-longer-present "services" service.
319196
  Closes #126169
319196
319196
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
319196
- rebuilt
319196
319196
* Fri May 14 2004 Jay Fenlason <fenlason@redhat.com>
319196
- Add patch to allow multiple rpc services to cooexist as long as they're
319196
  different program numbers or different versions.
319196
319196
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
319196
- rebuilt
319196
319196
* Thu Jan 29 2004 Jay Fenlason <fenlason@redhat.com> 2.3.13-1
319196
- Upgrade to new upstream version, which obsoletes most patches.
319196
- Add new tcp_rpc patch, to turn on the nolibwrap flag on tcp rpc services,
319196
  since libwrap cannot be used on them.
319196
319196
* Sun Dec 28 2003 Florian La Roche <Florian.LaRoche@redhat.de>
319196
- use new technology to filter python dep for inetdconvert instead
319196
  of changing the -x bit on file permissions
319196