Blame SPECS/xinetd.spec

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