2013-07-15 11:08:56 +00:00
|
|
|
%global _hardened_build 1
|
|
|
|
|
2007-02-26 14:48:23 +00:00
|
|
|
Summary: Network monitoring tools including ping
|
2004-09-09 06:20:22 +00:00
|
|
|
Name: iputils
|
2024-01-21 18:46:18 +00:00
|
|
|
Version: 20240117
|
2024-01-29 10:58:02 +00:00
|
|
|
Release: 3%{?dist}
|
2012-11-19 10:11:42 +00:00
|
|
|
# some parts are under the original BSD (ping.c)
|
|
|
|
# some are under GPLv2+ (tracepath.c)
|
2023-04-12 11:09:32 +00:00
|
|
|
License: BSD-4-Clause-UC AND GPL-2.0-or-later
|
2014-05-20 08:55:50 +00:00
|
|
|
URL: https://github.com/iputils/iputils
|
2008-06-03 11:04:03 +00:00
|
|
|
|
2021-02-02 23:21:53 +00:00
|
|
|
Source0: https://github.com/iputils/iputils/archive/%{version}/%{name}-%{version}.tar.gz
|
2005-12-05 11:15:21 +00:00
|
|
|
Source1: ifenslave.tar.gz
|
2014-07-12 22:22:03 +00:00
|
|
|
# Taken from ping.c on 2014-07-12
|
|
|
|
Source4: bsd.txt
|
|
|
|
Source5: https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
2008-06-03 11:04:03 +00:00
|
|
|
|
2019-03-28 07:57:23 +00:00
|
|
|
Patch100: iputils-ifenslave.patch
|
2021-03-23 07:27:26 +00:00
|
|
|
Patch101: iputils-ifenslave-CWE-170.patch
|
2006-07-10 07:33:23 +00:00
|
|
|
|
2019-03-28 07:57:23 +00:00
|
|
|
BuildRequires: gcc
|
|
|
|
BuildRequires: meson
|
|
|
|
BuildRequires: gettext
|
2007-03-15 17:40:40 +00:00
|
|
|
BuildRequires: glibc-kernheaders >= 2.4-8.19
|
2017-11-24 09:17:57 +00:00
|
|
|
BuildRequires: libidn2-devel
|
2010-05-17 13:34:51 +00:00
|
|
|
BuildRequires: openssl-devel
|
2010-11-08 09:22:47 +00:00
|
|
|
BuildRequires: libcap-devel
|
2019-03-28 07:57:23 +00:00
|
|
|
BuildRequires: libxslt docbook5-style-xsl
|
2012-12-06 08:39:58 +00:00
|
|
|
BuildRequires: systemd
|
2021-07-25 17:32:58 +00:00
|
|
|
BuildRequires: iproute
|
2019-01-23 10:47:17 +00:00
|
|
|
%{?systemd_ordering}
|
install everything in /usr
This patch is needed for the /usr-move feature
https://fedoraproject.org/wiki/Features/UsrMove
This package requires now 'filesystem' >= 3, which is only installable
on a system which has /bin, /sbin, /lib, /lib64 as symlinks to /usr and
not regular directories. The 'filesystem' package acts as a guard, to
prevent *this* package to be installed on old unconverted systems.
New installations will have the 'filesystem' >=3 layout right away, old
installations need to be converted with anaconda or dracut first; only
after that, the 'filesystem' package, and also *this* package can be
installed.
Packages *should* not install files in /bin, /sbin, /lib, /lib64, but
only in the corresponding directories in /usr. Packages *must* not
install conflicting files with the same names in the corresponding
directories in / and /usr. Especially compatibility symlinks must not be
installed.
Feel free to modify any of the changes to the spec file, but keep the
above in mind.
2012-01-25 17:43:32 +00:00
|
|
|
Provides: /bin/ping
|
|
|
|
Provides: /bin/ping6
|
|
|
|
Provides: /sbin/arping
|
2004-09-09 06:20:22 +00:00
|
|
|
|
|
|
|
%description
|
2004-09-09 06:21:01 +00:00
|
|
|
The iputils package contains basic utilities for monitoring a network,
|
|
|
|
including ping. The ping command sends a series of ICMP protocol
|
|
|
|
ECHO_REQUEST packets to a specified network host to discover whether
|
|
|
|
the target machine is alive and receiving network traffic.
|
2004-09-09 06:20:22 +00:00
|
|
|
|
|
|
|
%prep
|
2023-12-27 19:03:44 +00:00
|
|
|
%autosetup -a 1 -n %{name}-%{version}
|
2014-07-12 22:22:03 +00:00
|
|
|
cp %{SOURCE4} %{SOURCE5} .
|
2004-09-09 06:20:22 +00:00
|
|
|
|
|
|
|
%build
|
2021-12-17 19:28:52 +00:00
|
|
|
%meson
|
2019-03-28 07:57:23 +00:00
|
|
|
%meson_build
|
2022-11-25 12:16:31 +00:00
|
|
|
gcc $RPM_OPT_FLAGS $CFLAGS $RPM_LD_FLAGS $LDFLAGS ifenslave.c -o ifenslave
|
2004-09-09 06:20:22 +00:00
|
|
|
|
|
|
|
%install
|
2019-03-28 07:57:23 +00:00
|
|
|
%meson_install
|
2019-05-22 07:43:51 +00:00
|
|
|
%find_lang %{name}
|
2004-09-09 06:23:07 +00:00
|
|
|
|
2022-11-27 23:55:30 +00:00
|
|
|
mkdir -p ${RPM_BUILD_ROOT}%{_sbindir}
|
2016-11-08 08:21:13 +00:00
|
|
|
ln -sf ../bin/ping ${RPM_BUILD_ROOT}%{_sbindir}/ping
|
2015-09-24 07:27:52 +00:00
|
|
|
ln -sf ../bin/ping ${RPM_BUILD_ROOT}%{_sbindir}/ping6
|
2016-11-08 08:21:13 +00:00
|
|
|
ln -sf ../bin/tracepath ${RPM_BUILD_ROOT}%{_sbindir}/tracepath
|
|
|
|
ln -sf ../bin/tracepath ${RPM_BUILD_ROOT}%{_sbindir}/tracepath6
|
2020-02-03 11:18:15 +00:00
|
|
|
ln -sf ../bin/arping ${RPM_BUILD_ROOT}%{_sbindir}/arping
|
2023-02-13 00:55:10 +00:00
|
|
|
echo ".so man8/ping.8" > ${RPM_BUILD_ROOT}%{_mandir}/man8/ping6.8
|
|
|
|
echo ".so man8/tracepath.8" > ${RPM_BUILD_ROOT}%{_mandir}/man8/tracepath6.8
|
2019-03-28 07:57:23 +00:00
|
|
|
install -cp ifenslave ${RPM_BUILD_ROOT}%{_sbindir}/
|
|
|
|
install -cp ifenslave.8 ${RPM_BUILD_ROOT}%{_mandir}/man8/
|
2005-04-05 08:31:34 +00:00
|
|
|
|
2019-05-22 07:43:51 +00:00
|
|
|
%files -f %{name}.lang
|
2018-07-03 10:42:34 +00:00
|
|
|
%doc README.bonding
|
2014-07-12 22:22:03 +00:00
|
|
|
%license bsd.txt gpl-2.0.txt
|
2019-03-28 07:57:23 +00:00
|
|
|
%attr(0755,root,root) %caps(cap_net_raw=p) %{_bindir}/clockdiff
|
|
|
|
%attr(0755,root,root) %caps(cap_net_raw=p) %{_bindir}/arping
|
2020-03-02 08:53:09 +00:00
|
|
|
%attr(0755,root,root) %{_bindir}/ping
|
install everything in /usr
This patch is needed for the /usr-move feature
https://fedoraproject.org/wiki/Features/UsrMove
This package requires now 'filesystem' >= 3, which is only installable
on a system which has /bin, /sbin, /lib, /lib64 as symlinks to /usr and
not regular directories. The 'filesystem' package acts as a guard, to
prevent *this* package to be installed on old unconverted systems.
New installations will have the 'filesystem' >=3 layout right away, old
installations need to be converted with anaconda or dracut first; only
after that, the 'filesystem' package, and also *this* package can be
installed.
Packages *should* not install files in /bin, /sbin, /lib, /lib64, but
only in the corresponding directories in /usr. Packages *must* not
install conflicting files with the same names in the corresponding
directories in / and /usr. Especially compatibility symlinks must not be
installed.
Feel free to modify any of the changes to the spec file, but keep the
above in mind.
2012-01-25 17:43:32 +00:00
|
|
|
%{_sbindir}/ifenslave
|
|
|
|
%{_bindir}/tracepath
|
2016-11-08 08:21:13 +00:00
|
|
|
%{_sbindir}/ping
|
2004-09-09 06:23:07 +00:00
|
|
|
%{_sbindir}/ping6
|
2004-09-09 06:20:22 +00:00
|
|
|
%{_sbindir}/tracepath
|
|
|
|
%{_sbindir}/tracepath6
|
2020-02-03 11:18:15 +00:00
|
|
|
%{_sbindir}/arping
|
2023-02-13 00:55:10 +00:00
|
|
|
%attr(644,root,root) %{_mandir}/man8/clockdiff.8*
|
|
|
|
%attr(644,root,root) %{_mandir}/man8/arping.8*
|
|
|
|
%attr(644,root,root) %{_mandir}/man8/ping.8*
|
|
|
|
%{_mandir}/man8/ping6.8*
|
|
|
|
%attr(644,root,root) %{_mandir}/man8/tracepath.8*
|
|
|
|
%{_mandir}/man8/tracepath6.8*
|
|
|
|
%attr(644,root,root) %{_mandir}/man8/ifenslave.8*
|
2004-09-09 06:20:22 +00:00
|
|
|
|
|
|
|
%changelog
|
2024-01-29 10:58:02 +00:00
|
|
|
* Mon Jan 29 2024 Fedora Release Engineering <releng@fedoraproject.org> - 20240117-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
2024-01-24 22:54:36 +00:00
|
|
|
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 20240117-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
2024-01-21 18:46:18 +00:00
|
|
|
* Sun Jan 21 2024 Kevin Fenzi <kevin@scrye.com> - 20240117-1
|
|
|
|
- Update to 20240117. Fixes rhbz#2258910
|
|
|
|
|
2024-01-20 23:15:36 +00:00
|
|
|
* Sat Jan 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 20231222-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
2023-12-27 19:03:44 +00:00
|
|
|
* Wed Dec 27 2023 Kevin Fenzi <kevin@scrye.com> - 20231222-1
|
|
|
|
- Update to 20231222. Fixes rhbz#2255687
|
|
|
|
- Fix PatchN warnings
|
|
|
|
|
2023-07-20 07:36:02 +00:00
|
|
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 20221126-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
2023-04-12 11:09:32 +00:00
|
|
|
* Wed Apr 12 2023 Lukáš Zaoral <lzaoral@redhat.com> - 20221126-3
|
|
|
|
- migrate to SPDX license format
|
|
|
|
|
2023-01-19 13:19:45 +00:00
|
|
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 20221126-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
2022-11-27 23:55:30 +00:00
|
|
|
* Sun Nov 27 2022 Kevin Fenzi <kevin@scrye.com> - 20221126-1
|
|
|
|
- Update to 20221126. Fixes rhbz#2148690
|
|
|
|
|
2022-11-25 12:16:31 +00:00
|
|
|
* Fri Nov 25 2022 Jan Macku <jamacku@redhat.com> - 20211215-4
|
|
|
|
- Build iputils and ifenslave with correct flags provided by Fedora
|
|
|
|
|
2022-07-21 14:49:52 +00:00
|
|
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 20211215-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
2022-01-20 13:26:00 +00:00
|
|
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 20211215-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2021-12-17 19:28:52 +00:00
|
|
|
* Thu Dec 16 2021 Kevin Fenzi <kevin@scrye.com> - 20211215-1
|
|
|
|
- Update to 20211215. Fixes rhbz#2033161
|
|
|
|
|
2021-07-25 17:32:58 +00:00
|
|
|
* Sun Jul 25 2021 Kevin Fenzi <kevin@scrye.com> - 20210722-1
|
|
|
|
- Update to 20210722. Fixes rhbz#1985117
|
|
|
|
|
2021-07-22 08:42:54 +00:00
|
|
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 20210202-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-03-23 07:27:26 +00:00
|
|
|
* Tue Mar 23 2021 Jan Macku <jamacku@redhat.com> - 20210202-3
|
|
|
|
- ifenslave: fix CWE-170 (related to rhbz#1938746)
|
|
|
|
|
2021-03-02 15:13:39 +00:00
|
|
|
* Tue Mar 02 2021 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 20210202-2
|
|
|
|
- Rebuilt for updated systemd-rpm-macros
|
|
|
|
See https://pagure.io/fesco/issue/2583.
|
|
|
|
|
2021-02-02 23:21:53 +00:00
|
|
|
* Tue Feb 02 2021 Kevin Fenzi <kevin@scrye.com> - 20210202-1
|
|
|
|
- Update to 20210202. Fixes rhbz#1923917
|
|
|
|
|
2021-01-26 14:28:39 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 20200821-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-10-31 23:33:51 +00:00
|
|
|
* Sat Oct 31 2020 Kevin Fenzi <kevin@scrye.com> - 20200821-1
|
|
|
|
- Update to 20200821 release. Fixes bug #1871310
|
|
|
|
|
2020-07-28 01:56:41 +00:00
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20190515-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-05-18 07:55:10 +00:00
|
|
|
* Mon May 18 2020 Jan Synáček <jsynacek@redhat.com> - 20190515-7
|
|
|
|
- arping exits with error when should not (#1836607)
|
|
|
|
|
2020-03-02 08:53:09 +00:00
|
|
|
* Mon Mar 2 2020 Jan Synáček <jsynacek@redhat.com> - 20190515-6
|
|
|
|
- Make ping unprivileged (#1699497)
|
|
|
|
|
2020-02-03 11:18:15 +00:00
|
|
|
* Mon Feb 3 2020 Jan Synáček <jsynacek@redhat.com> - 20190515-5
|
|
|
|
- Symlink arping to /usr/sbin/arping to maintain backward compatibility (#1797525)
|
|
|
|
|
2020-01-29 05:37:17 +00:00
|
|
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20190515-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-07-25 09:41:00 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 20190515-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-05-22 07:43:51 +00:00
|
|
|
* Wed May 22 2019 Jan Synáček <jsynacek@redhat.com> - 20190515-2
|
|
|
|
- Mark localization files correctly (#1712514)
|
|
|
|
|
2019-05-16 10:30:53 +00:00
|
|
|
* Wed May 22 2019 Jan Synáček <jsynacek@redhat.com> - 20190515-1
|
|
|
|
- Update to s20190515 (#1710647)
|
|
|
|
|
2019-03-28 07:57:23 +00:00
|
|
|
* Thu Mar 28 2019 Jan Synáček <jsynacek@redhat.com> - 20190324-1
|
|
|
|
- Update to s20190324 (#1692136)
|
|
|
|
|
2019-02-01 03:31:12 +00:00
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 20180629-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2019-01-23 10:47:17 +00:00
|
|
|
* Wed Jan 23 2019 Bogdan Dobrelya <bdobreli@redhat.com> - 20180629-3
|
|
|
|
- Use systemd_ordering macro
|
|
|
|
|
2018-07-13 05:49:27 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 20180629-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-07-03 10:42:34 +00:00
|
|
|
* Tue Jul 3 2018 Jan Synáček <jsynacek@redhat.com> - 20180629-1
|
|
|
|
- update to s20180629 (#1596893)
|
|
|
|
|
2018-02-07 17:37:50 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 20161105-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-11-24 09:17:57 +00:00
|
|
|
* Fri Nov 24 2017 Jan Synáček <jsynacek@redhat.com> - 20161105-8
|
|
|
|
- switch to libidn2 (#1449149)
|
|
|
|
|
2017-08-02 23:51:24 +00:00
|
|
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 20161105-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-30 11:41:11 +00:00
|
|
|
* Sun Jul 30 2017 Florian Weimer <fweimer@redhat.com> - 20161105-6
|
|
|
|
- Rebuild with binutils fix for ppc64le (#1475636)
|
|
|
|
|
2017-07-27 07:10:57 +00:00
|
|
|
* Thu Jul 27 2017 Jan Synáček <jsynacek@redhat.com> - 20161105-5
|
|
|
|
- ping does not work in dkr images (#1350019)
|
|
|
|
|
2017-07-26 13:40:30 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 20161105-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-05-12 09:32:55 +00:00
|
|
|
* Fri May 12 2017 Karsten Hopp <karsten@redhat.com> - 20161105-3
|
|
|
|
- don't build docs for module builds to limit dependencies
|
|
|
|
|
2017-02-10 16:32:36 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 20161105-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-11-08 08:21:13 +00:00
|
|
|
* Tue Nov 8 2016 Jan Synáček <jsynacek@redhat.com> - 20161105-1
|
|
|
|
- Update to s20161105 (#1392759)
|
|
|
|
|
2016-10-13 15:35:56 +00:00
|
|
|
* Thu Oct 13 2016 Tomáš Mráz <tmraz@redhat.com> - 20160308-4
|
|
|
|
- rebuild with OpenSSL 1.1.0
|
|
|
|
|
2016-06-22 11:38:28 +00:00
|
|
|
* Wed Jun 22 2016 Jan Synáček <jsynacek@redhat.com> - 20160308-3
|
|
|
|
- Fix: Failed to bind to device (#1348934)
|
|
|
|
|
2016-03-09 09:14:45 +00:00
|
|
|
* Wed Mar 9 2016 Jan Synáček <jsynacek@redhat.com> - 20160308-2
|
|
|
|
- Don't build against libnettle
|
|
|
|
|
2016-03-09 07:51:13 +00:00
|
|
|
* Wed Mar 9 2016 Jan Synáček <jsynacek@redhat.com> - 20160308-1
|
|
|
|
- Update to s20160308 (#1315975)
|
|
|
|
|
2016-02-04 00:38:13 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 20150815-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-11-19 13:45:14 +00:00
|
|
|
* Thu Nov 19 2015 Jan Synáček <jsynacek@redhat.com> - 20150815-2
|
|
|
|
- Fix: Always use POSIX locale when parsing -i (#1283277)
|
|
|
|
|
2015-09-24 07:27:52 +00:00
|
|
|
* Thu Sep 24 2015 Jan Synáček <jsynacek@redhat.com> - 20150815-1
|
|
|
|
- Update to s20150815 (#617934)
|
|
|
|
|
2015-08-23 15:27:36 +00:00
|
|
|
* Sun Aug 23 2015 Peter Robinson <pbrobinson@fedoraproject.org> 20140519-6
|
|
|
|
- Don't depend on chkconfig, uses systemctl now
|
|
|
|
|
2015-06-17 11:32:38 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20140519-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2014-08-16 21:48:56 +00:00
|
|
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20140519-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-07-12 22:22:03 +00:00
|
|
|
* Sat Jul 12 2014 Tom Callaway <spot@fedoraproject.org> - 2040519-3
|
|
|
|
- fix license handling
|
|
|
|
|
2014-06-07 22:40:04 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20140519-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-05-20 08:55:50 +00:00
|
|
|
* Tue May 20 2014 Jan Synáček <jsynacek@redhat.com> - 20140519-1
|
|
|
|
- Update to iputils-s20140519 (#1096617)
|
|
|
|
|
2014-04-11 07:14:01 +00:00
|
|
|
* Fri Apr 11 2014 Jan Synáček <jsynacek@redhat.com> - 20121221-10
|
|
|
|
- Fix arping hang if SIGALRM is blocked (#1085971)
|
|
|
|
|
2014-03-26 10:05:57 +00:00
|
|
|
* Wed Mar 26 2014 Jan Synáček <jsynacek@redhat.com> - 20121221-9
|
|
|
|
- Fix message flood when EPERM is encountered in ping (#1061867)
|
|
|
|
|
2014-03-03 14:16:29 +00:00
|
|
|
* Mon Feb 3 2014 Jan Synáček <jsynacek@redhat.com> - 20121221-8
|
|
|
|
- reference documentation in the service files
|
2014-03-03 14:19:16 +00:00
|
|
|
- remove redundant sysconfig-related stuff
|
2014-03-03 14:27:30 +00:00
|
|
|
- remove sysvinit script
|
2014-03-03 14:16:29 +00:00
|
|
|
|
2014-01-21 08:22:31 +00:00
|
|
|
* Tue Jan 21 2014 Jan Synáček <jsynacek@redhat.com> - 20121221-7
|
|
|
|
- Build with pie/full RELRO (#1055742)
|
|
|
|
|
2014-01-19 15:16:40 +00:00
|
|
|
* Sun Jan 19 2014 Ville Skyttä <ville.skytta@iki.fi> - 20121221-6
|
|
|
|
- Don't order services after syslog.target.
|
|
|
|
|
2013-10-31 10:30:21 +00:00
|
|
|
* Thu Oct 31 2013 Jan Synáček <jsynacek@redhat.com> - 20121221-5
|
|
|
|
- Harden the package even more (full RELRO)
|
|
|
|
|
2013-08-03 19:53:27 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20121221-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-07-15 11:08:56 +00:00
|
|
|
* Mon Jul 15 2013 Jan Synáček <jsynacek@redhat.com> - 20121221-3
|
|
|
|
- Harden the package
|
|
|
|
|
2013-02-01 07:47:50 +00:00
|
|
|
* Fri Feb 01 2013 Jan Synáček <jsynacek@redhat.com> - 20121221-2
|
|
|
|
- Always use posix locale when reading -i (#905840)
|
2013-02-01 07:48:17 +00:00
|
|
|
- Set correct ninfod capabilities
|
2013-02-01 07:47:50 +00:00
|
|
|
|
2013-01-07 12:52:02 +00:00
|
|
|
* Mon Jan 07 2013 Jan Synáček <jsynacek@redhat.com> - 20121221-1
|
|
|
|
- Update to iputils-s20121207 (#890397) and remove unnecessary patches
|
|
|
|
|
2012-12-07 08:37:01 +00:00
|
|
|
* Fri Dec 07 2012 Jan Synáček <jsynacek@redhat.com> - 20121207-1
|
|
|
|
- Update to iputils-s20121207 (#884983) - fixes a ping segfault introduced
|
|
|
|
by the previous update
|
2012-12-07 08:37:34 +00:00
|
|
|
- Update ninfod-minor patch
|
2012-12-07 07:09:10 +00:00
|
|
|
- Renumber patches
|
2012-12-07 10:10:40 +00:00
|
|
|
- Fix -F switch (flowlabel patch)
|
2012-12-07 08:37:01 +00:00
|
|
|
|
2012-12-06 10:44:28 +00:00
|
|
|
* Thu Dec 06 2012 Jan Synáček <jsynacek@redhat.com> - 20121205-1
|
|
|
|
- Update to iputils-s20121205 (#884436) and remove unnecessary patches
|
|
|
|
|
2012-12-06 08:25:21 +00:00
|
|
|
* Thu Dec 06 2012 Jan Synáček <jsynacek@redhat.com> - 20121125-3
|
|
|
|
- Package ninfod (#877530)
|
2012-12-06 08:39:58 +00:00
|
|
|
- Update systemd requirements
|
2012-12-06 08:25:21 +00:00
|
|
|
|
2012-11-27 07:38:28 +00:00
|
|
|
* Mon Nov 26 2012 Jan Synáček <jsynacek@redhat.com> - 20121125-2
|
|
|
|
- Comment patches and cleanup
|
2012-11-27 12:24:34 +00:00
|
|
|
- Update ifaddrs patch
|
2012-11-27 12:27:30 +00:00
|
|
|
- Call usage() before limiting capabilities
|
2012-11-27 12:35:29 +00:00
|
|
|
- Correct ifaddrs patch
|
2012-11-27 12:49:12 +00:00
|
|
|
- Drop corr_type patch (gcc 4.4 build hack)
|
2012-11-27 13:03:53 +00:00
|
|
|
- Fix missing end tags in sgml documentation
|
2012-11-27 07:38:28 +00:00
|
|
|
|
2012-11-26 10:53:54 +00:00
|
|
|
* Mon Nov 26 2012 Jan Synáček <jsynacek@redhat.com> - 20121125-1
|
|
|
|
- Update to iputils-s20121125 (#879952)
|
|
|
|
|
2012-11-26 09:59:29 +00:00
|
|
|
* Mon Nov 26 2012 Jan Synáček <jsynacek@redhat.com> - 20121121-2
|
|
|
|
- Re-fix arping's default device search logic (#879807)
|
|
|
|
|
2012-11-22 07:01:47 +00:00
|
|
|
* Thu Nov 22 2012 Jan Synáček <jsynacek@redhat.com> - 20121121-1
|
|
|
|
- Update to iputils-s20121121, drop unnecessary patches
|
2012-11-22 07:09:40 +00:00
|
|
|
- Add capabilities to clockdiff and arping
|
2012-11-22 08:02:23 +00:00
|
|
|
- Renumber patches
|
2012-11-22 09:11:32 +00:00
|
|
|
- Fix arping's default device search logic
|
2012-11-22 07:01:47 +00:00
|
|
|
|
2012-11-19 10:11:42 +00:00
|
|
|
* Mon Nov 19 2012 Jan Synáček <jsynacek@redhat.com> - 20121112-2
|
|
|
|
- Update License field
|
|
|
|
|
2012-11-13 12:01:31 +00:00
|
|
|
* Tue Nov 13 2012 Jan Synáček <jsynacek@redhat.com> - 20121112-1
|
|
|
|
- Update to iputils-s20121112 (#875767)
|
|
|
|
+ drop unnecessary patches
|
|
|
|
+ update patches
|
2012-11-13 12:12:36 +00:00
|
|
|
+ wrap SO_BINDTODEVICE with the correct capability
|
2012-11-13 13:52:14 +00:00
|
|
|
+ fix incorrect free (hits when -lidn is used)
|
2012-11-13 12:01:31 +00:00
|
|
|
|
2012-11-08 12:14:22 +00:00
|
|
|
* Thu Nov 08 2012 Jan Synáček <jsynacek@redhat.com> - 20121106-2
|
|
|
|
- Update ifenslave tarball (#859182)
|
|
|
|
|
2012-11-06 13:24:54 +00:00
|
|
|
* Tue Nov 06 2012 Jan Synáček <jsynacek@redhat.com> - 20121106-1
|
|
|
|
- Update to iputils-s20121106 (#873571) and update patches
|
|
|
|
|
2012-10-16 11:11:58 +00:00
|
|
|
* Mon Oct 15 2012 Jan Synáček <jsynacek@redhat.com> - 20121011-1
|
|
|
|
- Update to iputils-s20121011
|
2012-10-16 11:17:35 +00:00
|
|
|
+ drop unnecessary patches
|
2012-10-16 11:19:12 +00:00
|
|
|
+ update patches
|
2012-10-16 11:20:28 +00:00
|
|
|
+ improve spec
|
2012-10-16 11:11:58 +00:00
|
|
|
|
2012-08-22 05:32:59 +00:00
|
|
|
* Wed Aug 22 2012 Jan Synáček <jsynacek@redhat.com> - 20101006-18
|
|
|
|
- Improve spec for fedora
|
2012-08-22 05:50:20 +00:00
|
|
|
- Add systemd-rpm macros (#850167)
|
2012-08-22 05:32:59 +00:00
|
|
|
|
2012-07-23 07:49:54 +00:00
|
|
|
* Mon Jul 23 2012 Jan Synáček <jsynacek@redhat.com> 20101006-17
|
|
|
|
- Minor update: capabilities patch
|
|
|
|
|
2012-07-20 07:13:07 +00:00
|
|
|
* Fri Jul 20 2012 Jan Synáček <jsynacek@redhat.com> 20101006-16
|
|
|
|
- Make fedora-review friendly
|
|
|
|
|
2012-07-19 15:04:30 +00:00
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20101006-16
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-06-26 07:36:08 +00:00
|
|
|
* Mon Jun 25 2012 Jan Synáček <jsynacek@redhat.com> 20101006-15
|
|
|
|
- Ping fixes:
|
|
|
|
+ enable marking packets when the correct capabilities are set (#802197)
|
2012-06-26 07:39:29 +00:00
|
|
|
+ integer overflow (#834661)
|
|
|
|
+ Fallback to numeric addresses while exiting (#834661)
|
2012-06-26 07:36:08 +00:00
|
|
|
|
install everything in /usr
This patch is needed for the /usr-move feature
https://fedoraproject.org/wiki/Features/UsrMove
This package requires now 'filesystem' >= 3, which is only installable
on a system which has /bin, /sbin, /lib, /lib64 as symlinks to /usr and
not regular directories. The 'filesystem' package acts as a guard, to
prevent *this* package to be installed on old unconverted systems.
New installations will have the 'filesystem' >=3 layout right away, old
installations need to be converted with anaconda or dracut first; only
after that, the 'filesystem' package, and also *this* package can be
installed.
Packages *should* not install files in /bin, /sbin, /lib, /lib64, but
only in the corresponding directories in /usr. Packages *must* not
install conflicting files with the same names in the corresponding
directories in / and /usr. Especially compatibility symlinks must not be
installed.
Feel free to modify any of the changes to the spec file, but keep the
above in mind.
2012-01-25 17:43:32 +00:00
|
|
|
* Wed Jan 25 2012 Harald Hoyer <harald@redhat.com> 20101006-14
|
|
|
|
- install everything in /usr
|
|
|
|
https://fedoraproject.org/wiki/Features/UsrMove
|
|
|
|
|
2012-01-13 05:59:17 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20101006-13
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-11-24 13:52:19 +00:00
|
|
|
* Thu Nov 24 2011 Jiri Skala <jskala@redhat.com> - 20101006-12
|
|
|
|
- fixes #756439 - ping Record Route report incorrect (same route)
|
|
|
|
|
2011-11-10 09:22:22 +00:00
|
|
|
* Thu Nov 10 2011 Jiri Skala <jskala@redhat.com> - 20101006-11
|
|
|
|
- fixes #752397 - arping uses eth0 as default interface
|
|
|
|
|
2011-08-01 09:18:45 +00:00
|
|
|
* Mon Aug 01 2011 Jiri Skala <jskala@redhat.com> - 20101006-10
|
|
|
|
- rebuild for libcap
|
|
|
|
|
2011-06-27 13:07:34 +00:00
|
|
|
* Mon Jun 27 2011 Jiri Skala <jskala@redhat.com> - 20101006-9
|
|
|
|
- fixes #697532 - The SysV initscript should be packaged into subpackage
|
|
|
|
|
2011-03-29 07:12:48 +00:00
|
|
|
* Tue Mar 29 2011 Jiri Skala <jskala@redhat.com> - 20101006-8
|
|
|
|
- fixes #663734 - ping/ping6 man page fixes
|
|
|
|
- fixes #673831 - tracepath/tracepath6 manpage fixes
|
|
|
|
|
2011-02-09 15:54:25 +00:00
|
|
|
* Wed Feb 09 2011 Jiri Skala <jskala@redhat.com> - 20101006-7
|
|
|
|
- fixes build errors due to unused variables
|
|
|
|
|
2011-02-09 13:03:14 +00:00
|
|
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20101006-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-01-19 09:01:06 +00:00
|
|
|
* Wed Jan 19 2011 Jiri Skala <jskala@redhat.com> - 20101006-5
|
|
|
|
- fixes #670380 - added /etc/sysconfig/rdisc, modified initscript
|
|
|
|
- initscript moved to git
|
|
|
|
|
2010-12-15 15:27:40 +00:00
|
|
|
* Wed Dec 15 2010 Jiri Skala <jskala@redhat.com> - 20101006-4
|
|
|
|
- fixes #662720 - Providing native systemd file
|
|
|
|
- freeing memory when capabilities are dropped
|
|
|
|
|
2010-11-08 09:03:47 +00:00
|
|
|
* Mon Nov 08 2010 Jiri Skala <jskala@redhat.com> - 20101006-3
|
|
|
|
- applied patch dropping capabilities of Ludwig Nussel
|
|
|
|
- fixes building ping, pinpg6 with -pie option
|
|
|
|
- moves most CFLAGS options from spec to Makefile
|
|
|
|
|
2010-10-27 08:38:48 +00:00
|
|
|
* Wed Oct 27 2010 Jiri Skala <jskala@redhat.com> - 20101006-2
|
|
|
|
- fixes #646444 - Replace SETUID in spec file with the correct file capabilities
|
|
|
|
|
2010-10-11 07:45:47 +00:00
|
|
|
* Mon Oct 11 2010 Jiri Skala <jskala@redhat.com> - 20101006-1
|
|
|
|
- update to latest upstream
|
|
|
|
|
2010-07-13 07:01:13 +00:00
|
|
|
* Tue Jul 13 2010 Jiri Skala <jskala@redhat.com> - 20100418-3
|
|
|
|
- applied patch preventing ping against dos attack
|
|
|
|
|
2010-05-19 14:31:49 +00:00
|
|
|
* Wed May 19 2010 Jiri Skala <jskala@redhat.com> - 20100418-2
|
|
|
|
- fixes #593641 - update bonding files (updated ifenslave tarball)
|
|
|
|
|
2010-05-17 12:28:06 +00:00
|
|
|
* Tue Apr 20 2010 Jiri Skala <jskala@redhat.com> - 20100418-1
|
|
|
|
- update to latest upstream
|
|
|
|
- enables flowlabel feature (-F option)
|
|
|
|
|
2010-03-05 08:54:47 +00:00
|
|
|
* Fri Mar 05 2010 Jiri Skala <jskala@redhat.com> - 20071127-10
|
|
|
|
- fixes #557308 - arping ignores the deadline option
|
|
|
|
|
2009-07-25 03:33:29 +00:00
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20071127-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-02-25 21:59:39 +00:00
|
|
|
* Wed Feb 25 2009 Jiri Skala <jskala@redhat.com> - 20071127-8
|
|
|
|
- remake type conversions to gcc4.4 requirements
|
|
|
|
|
2009-02-25 07:50:41 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20071127-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-09-26 05:58:17 +00:00
|
|
|
* Fri Sep 26 2008 Jiri Skala <jskala@redhat.com> - 20071127-6
|
|
|
|
- #455713 not accepted - suid is back
|
|
|
|
|
2008-08-20 07:59:20 +00:00
|
|
|
* Fri Aug 15 2008 Jiri Skala <jskala@redhat.com> - 20071127-5
|
|
|
|
- removed a dependency on libsysfs library in arping
|
|
|
|
|
2008-08-06 13:53:00 +00:00
|
|
|
* Wed Aug 06 2008 Jiri Skala <jskala@redhat.com> - 20071127-4
|
|
|
|
- Resolves: #455713 remove suid from ping
|
|
|
|
- corrected typing error in man
|
|
|
|
|
2008-06-03 11:04:03 +00:00
|
|
|
* Tue Jun 03 2008 Martin Nagy <mnagy@redhat.com> - 20071127-3
|
|
|
|
- major patch cleanup so it will be easier to get patches upstream
|
|
|
|
- fix for #68212, previous fix actually didn't work for ping6
|
|
|
|
- renewed the ia64 align patches
|
|
|
|
- update README.bonding
|
|
|
|
- clear up the code from warnings
|
|
|
|
- spec file cleanup
|
|
|
|
|
2008-03-25 14:00:32 +00:00
|
|
|
* Tue Mar 25 2008 Martin Nagy <mnagy@redhat.com> - 20071127-2
|
|
|
|
- fix inconsistent behaviour of ping (#360881)
|
|
|
|
|
2008-02-25 10:21:33 +00:00
|
|
|
* Mon Feb 25 2008 Martin Nagy <mnagy@redhat.com> - 20071127-1
|
|
|
|
- update to new upstream version
|
|
|
|
|
2008-02-18 19:48:26 +00:00
|
|
|
* Mon Feb 18 2008 Martin Nagy <mnagy@redhat.com> - 20070202-9
|
|
|
|
- rebuild
|
|
|
|
|
2008-02-18 14:19:41 +00:00
|
|
|
* Mon Feb 18 2008 Martin Nagy <mnagy@redhat.com> - 20070202-8
|
|
|
|
- correctly fix the -w option and return code of arping (#387881)
|
|
|
|
|
2008-02-01 10:38:18 +00:00
|
|
|
* Fri Feb 01 2008 Martin Nagy <mnagy@redhat.com> - 20070202-7
|
|
|
|
- fix -Q option of ping6 (#213544)
|
|
|
|
|
2008-01-14 15:26:10 +00:00
|
|
|
* Mon Jan 14 2008 Martin Nagy <mnagy@redhat.com> - 20070202-6
|
|
|
|
- fix absolute symlinks and character encoding for RELNOTES (#225909)
|
2008-01-15 14:10:57 +00:00
|
|
|
- preserve file timestamps (#225909)
|
|
|
|
- use %%{?_smp_mflags} (#225909)
|
|
|
|
- fix service rdisc stop removing of lock file
|
2008-01-14 15:26:10 +00:00
|
|
|
|
2007-09-14 09:26:57 +00:00
|
|
|
* Fri Sep 14 2007 Martin Bacovsky <mbacovsk@redhat.com> - 20070202-5
|
|
|
|
- rebuild
|
|
|
|
|
2007-08-07 09:14:36 +00:00
|
|
|
* Fri Aug 3 2007 Martin Bacovsky <mbacovsk@redhat.com> - 20070202-4
|
|
|
|
- resolves: #236725: ping does not work for subsecond intervals for ordinary user
|
|
|
|
- resolves: #243197: RFE: Please sync ifenslave with current kernel
|
|
|
|
- resolves: #246954: Initscript Review
|
2007-08-07 10:09:32 +00:00
|
|
|
- resolves: #251124: can't build rdisc - OPEN_MAX undeclared
|
2007-08-07 09:14:36 +00:00
|
|
|
|
2007-04-06 11:01:00 +00:00
|
|
|
* Fri Apr 6 2007 Martin Bacovsky <mbacovsk@redhat.com> - 20070202-3
|
|
|
|
- resolves: #235374: Update of iputils starts rdisc, breaking connectivity
|
|
|
|
|
2007-03-27 11:34:20 +00:00
|
|
|
* Tue Mar 27 2007 Martin Bacovsky <mbacovsk@redhat.com> - 20070202-2
|
|
|
|
- Resolves: #234060: [PATCH] IDN (umlaut domains) support for ping and ping6
|
|
|
|
patch provided by Robert Scheck <redhat@linuxnetz.de>
|
|
|
|
|
2007-03-15 16:43:36 +00:00
|
|
|
* Thu Mar 15 2007 Martin Bacovsky <mbacovsk@redhat.com> - 20070202-1
|
|
|
|
- upgarde to new upstream iputils-s20070202
|
|
|
|
- Resolves: #229995
|
2007-03-15 17:40:40 +00:00
|
|
|
- Resolves: #225909 - Merge Review: iputils
|
2007-03-15 16:43:36 +00:00
|
|
|
- patches revision
|
|
|
|
|
2007-02-26 14:48:23 +00:00
|
|
|
* Thu Feb 22 2007 Martin Bacovsky <mbacovsk@redhat.com>- 20020927-42
|
|
|
|
- Resolves: #218706 - now defines the destination address along RFC3484
|
|
|
|
- Resolves: #229630 - ifenslave(8) man page added
|
|
|
|
- Resolves: #213716 - arping doesn't work on InfiniBand ipoib interfaces
|
|
|
|
|
2006-09-13 11:42:24 +00:00
|
|
|
* Wed Sep 13 2006 Radek Vokal <rvokal@redhat.com> - 20020927-41
|
|
|
|
- new ifenslave/bonding documentation
|
|
|
|
|
2006-08-21 14:43:50 +00:00
|
|
|
* Mon Aug 21 2006 Martin Bacovsky <mbacovsk@redhat.com> - 20020927-40
|
2006-08-21 14:38:00 +00:00
|
|
|
- tracepath doesn't continue past destination host (#174032)
|
|
|
|
previous patch replaced by new one provided by <mildew@gmail.com>
|
|
|
|
option -c added
|
|
|
|
|
2006-07-17 14:38:37 +00:00
|
|
|
* Mon Jul 17 2006 Radek Vokal <rvokal@redhat.com> - 20020927-39
|
|
|
|
- rebuilt
|
|
|
|
|
2006-07-10 07:33:23 +00:00
|
|
|
* Mon Jul 10 2006 Radek Vokal <rvokal@redhat.com> - 20020927-38
|
|
|
|
- tracepath doesn't continue past destination host (#174032) <mildew@gmail.com>
|
|
|
|
|
2006-03-29 13:13:29 +00:00
|
|
|
* Wed Mar 29 2006 Radek Vokál <rvokal@redhat.com> - 20020927-37
|
|
|
|
- fix ifenslave, shows interface addresses
|
|
|
|
- add RPM_OPT_FLAGS to ifenslave
|
|
|
|
|
2006-03-12 09:33:23 +00:00
|
|
|
* Sun Mar 12 2006 Radek Vokál <rvokal@redhat.com> - 20020927-36
|
|
|
|
- fix ifenslave man page (#185223)
|
|
|
|
|
2006-02-24 15:09:40 +00:00
|
|
|
* Fri Feb 24 2006 Radek Vokál <rvokal@redhat.com> - 20020927-35
|
|
|
|
- add PreReq: chkconfig (#182799,#182798)
|
|
|
|
|
2006-02-11 03:38:37 +00:00
|
|
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 20020927-34.2
|
|
|
|
- bump again for double-long bug on ppc(64)
|
|
|
|
|
2006-02-07 12:17:52 +00:00
|
|
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 20020927-34.1
|
|
|
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
|
|
2006-02-06 10:02:24 +00:00
|
|
|
* Mon Feb 06 2006 Radek Vokál <rvokal@redhat.com> 20020927-34
|
|
|
|
- ping clean-up, added new ICMP warning messages
|
|
|
|
|
|
|
|
* Wed Jan 25 2006 Radek Vokál <rvokal@redhat.com> 20020927-33
|
2006-01-25 15:38:23 +00:00
|
|
|
- gcc patch, warnings cleaned-up
|
|
|
|
|
2005-12-13 12:39:08 +00:00
|
|
|
* Tue Dec 13 2005 Radek Vokal <rvokal@redhat.com> 20020927-32
|
|
|
|
- fix HOPLIMIT option for setsockopt() (#175471)
|
|
|
|
|
2005-12-09 22:41:01 +00:00
|
|
|
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2013-07-15 11:06:43 +00:00
|
|
|
* Mon Dec 05 2005 Radek Vokal <rvokal@redhat.com> 20020927-31
|
2005-12-05 11:15:21 +00:00
|
|
|
- ifenslave.8 from debian.org
|
|
|
|
- separate ifenslave to its own tarball
|
|
|
|
|
2005-11-08 10:12:12 +00:00
|
|
|
* Tue Nov 08 2005 Radek Vokal <rvokal@redhat.com> 20020927-30
|
|
|
|
- don't ship traceroute6, now part of traceroute package
|
|
|
|
|
2005-10-06 13:24:57 +00:00
|
|
|
* Wed Oct 05 2005 Radek Vokal <rvokal@redhat.com> 20020927-29
|
|
|
|
- add ping6 and tracepath6 manpages, fix attributes.
|
|
|
|
|
2005-09-30 08:22:29 +00:00
|
|
|
* Fri Sep 30 2005 Radek Vokal <rvokal@redhat.com> 20020927-28
|
|
|
|
- memset structure before using it (#168166)
|
|
|
|
|
2005-09-26 11:32:19 +00:00
|
|
|
* Mon Sep 26 2005 Radek Vokal <rvokal@redhat.com> 20020927-27
|
|
|
|
- fixed ping -f, flooding works again (#134859,#169141)
|
|
|
|
|
2005-09-08 09:19:28 +00:00
|
|
|
* Thu Sep 08 2005 Radek Vokal <rvokal@redhat.com> 20020927-26
|
|
|
|
- tracepath6 and tracepath fix, use getaddrinfo instead of gethostbyname(2)
|
|
|
|
(#100778,#167735)
|
|
|
|
|
2005-08-12 10:08:18 +00:00
|
|
|
* Fri Aug 12 2005 Radek Vokal <rvokal@redhat.com> 20020927-25
|
|
|
|
- fixed arping timeout (#165715)
|
|
|
|
|
2005-07-18 07:15:50 +00:00
|
|
|
* Mon Jul 18 2005 Radek Vokal <rvokal@redhat.com> 20020927-24
|
|
|
|
- fixed arping buffer overflow (#163383)
|
|
|
|
|
2005-05-27 07:20:44 +00:00
|
|
|
* Fri May 27 2005 Radek Vokal <rvokal@redhat.com> 20020927-23
|
|
|
|
- fixed un-initialized "device" (#158914)
|
|
|
|
|
2005-04-07 07:07:20 +00:00
|
|
|
* Thu Apr 07 2005 Radek Vokal <rvokal@redhat.com> 20020927-22
|
|
|
|
- don't start rdisc as default (#154075)
|
|
|
|
|
2005-04-05 08:31:34 +00:00
|
|
|
* Tue Apr 05 2005 Radek Vokal <rvokal@redhat.com> 20020927-21
|
|
|
|
- rdisc init script added (#151614)
|
|
|
|
|
2005-03-04 10:29:22 +00:00
|
|
|
* Fri Mar 04 2005 Radek Vokal <rvokal@redhat.com> 20020927-20
|
|
|
|
- arping fix for infiniband (#150156)
|
|
|
|
|
2004-12-07 14:47:41 +00:00
|
|
|
* Tue Dec 07 2004 Radek Vokal <rvokal@redhat.com> 20020927-19
|
|
|
|
- return values fixed - patch from suse.de
|
|
|
|
|
2004-10-18 08:25:04 +00:00
|
|
|
* Mon Oct 18 2004 Radek Vokal <rvokal@redhat.com>
|
|
|
|
- ifenslave.c and README.bonding updated from kernel-2.6.8-1.521 (#136059)
|
|
|
|
|
2004-10-11 10:56:25 +00:00
|
|
|
* Mon Oct 11 2004 Radek Vokal <rvokal@redhat.com>
|
|
|
|
- spec file updated, source fixed (#135193)
|
|
|
|
|
2004-09-09 06:24:06 +00:00
|
|
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 06:24:00 +00:00
|
|
|
* Wed May 12 2004 Phil Knirsch <pknirsch@redhat.com> 20020927-15
|
|
|
|
- Updated rh patch to enable PIE build of binaries.
|
|
|
|
|
|
|
|
* Thu Apr 22 2004 Phil Knirsch <pknirsch@redhat.com> 20020927-14
|
|
|
|
- Fixed bug with wrong return code check of inet_pton() in traceroute6 (#100684)
|
|
|
|
|
2004-09-09 06:23:40 +00:00
|
|
|
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 06:23:27 +00:00
|
|
|
* Thu Oct 02 2003 Phil Knirsch <pknirsch@redhat.com> 20020927-12
|
|
|
|
- Fixed unaligned access problem on ia64 (#101417)
|
|
|
|
|
|
|
|
* Wed Sep 10 2003 Phil Knirsch <pknirsch@redhat.com> 20020927-11
|
|
|
|
- Don't use own headers, use glibc and kernheaders.
|
|
|
|
|
|
|
|
* Thu Sep 04 2003 Bill Nottingham <notting@redhat.com> 20020927-10
|
|
|
|
- fix build with new glibc-kernheaders
|
|
|
|
|
2004-09-09 06:23:07 +00:00
|
|
|
* Wed Sep 03 2003 Phil Knirsch <pknirsch@redhat.com> 20020927-9.1
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Wed Sep 03 2003 Phil Knirsch <pknirsch@redhat.com> 20020927-9
|
|
|
|
- Start icmp_seq from 0 instead of 1 (Conform with debian and Solaris #100609).
|
|
|
|
|
|
|
|
* Thu Jul 31 2003 Phil Knirsch <pknirsch@redhat.com> 20020927-8
|
|
|
|
- One more update to ifenslave.c
|
|
|
|
|
|
|
|
* Mon Jun 16 2003 Phil Knirsch <pknirsch@redhat.com> 20020927-7
|
|
|
|
- Updated ifenslave.c and README.bonding to latest version.
|
|
|
|
|
|
|
|
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Thu May 15 2003 Phil Knirsch <pknirsch@redhat.com> 20020927-5
|
|
|
|
- Bumped release and rebuilt
|
|
|
|
|
|
|
|
* Thu May 15 2003 Phil Knirsch <pknirsch@redhat.com> 20020927-4
|
|
|
|
- Fixed DNS lookup problems (#68212).
|
|
|
|
- Added warning if binding problem failed on subinterface (#81640).
|
|
|
|
|
|
|
|
* Tue May 13 2003 Phil Knirsch <pknirsch@redhat.com> 20020927-3
|
|
|
|
- Removed bonding tarball and replaced it with ifenslave.c and README
|
|
|
|
- FHS compliance for all tools, now to be found in /bin with compat symlinks to
|
|
|
|
old places.
|
|
|
|
|
|
|
|
* Wed Jan 22 2003 Tim Powers <timp@redhat.com> 20020927-2
|
2004-09-09 06:22:43 +00:00
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Fri Nov 29 2002 Phil Knirsch <pknirsch@redhat.com> 20020927-1
|
|
|
|
- Updated to latest upstream version.
|
|
|
|
|
|
|
|
* Fri Jun 21 2002 Tim Powers <timp@redhat.com> 20020124-8
|
|
|
|
- automated rebuild
|
|
|
|
|
|
|
|
* Tue Jun 18 2002 Phil Knirsch <pknirsch@redhat.com> 20020124-7
|
|
|
|
- Added new BuildPreReqs for docbook-utils and perl-SGMLSpm (#66661)
|
|
|
|
- Fixed ipv6 error printing problem (#66659).
|
|
|
|
|
|
|
|
* Sun May 26 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
|
|
|
* Tue May 21 2002 Phil Knirsch <pknirsch@redhat.com>
|
|
|
|
- Added a patch to activate the rdisc server (#64270).
|
|
|
|
- Display the countermeasures warning only in verbose (#55236)
|
|
|
|
|
2004-09-09 06:21:50 +00:00
|
|
|
* Thu Apr 18 2002 Bill Nottingham <notting@redhat.com>
|
|
|
|
- quit trying to build HTML versions of the man pages
|
|
|
|
|
2004-09-09 06:21:46 +00:00
|
|
|
* Thu Mar 14 2002 Phil Knirsch <pknirsch@redhat.com>
|
|
|
|
- Added fix by Tom "spot" Callaway to fix buffer overflow problems in stats.
|
|
|
|
|
|
|
|
* Wed Feb 27 2002 Phil Knirsch <pknirsch@redhat.com>
|
|
|
|
- Update to iputils-ss020124.
|
|
|
|
|
|
|
|
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
2004-09-09 06:21:01 +00:00
|
|
|
* Mon Aug 27 2001 Philipp Knirsch <pknirsch@redhat.de> 20001110-6
|
|
|
|
- Fixed buffer overflow problem in traceroute6.c (#51135)
|
|
|
|
|
2013-07-15 11:06:43 +00:00
|
|
|
* Mon Jul 02 2001 Philipp Knirsch <pknirsch@redhat.de>
|
2004-09-09 06:20:57 +00:00
|
|
|
- Made ping6 and traceroute6 setuid (safe as they drop it VERY early) (#46769)
|
|
|
|
|
2004-09-09 06:20:54 +00:00
|
|
|
* Thu Jun 28 2001 Philipp Knirsch <pknirsch@redhat.de>
|
|
|
|
- Fixed ping statistics overflow bug (#43801)
|
|
|
|
|
|
|
|
* Tue Jun 26 2001 Philipp Knirsch <pknirsch@redhat.de>
|
|
|
|
- Fixed a bunch of compiler warnings (#37131)
|
|
|
|
- Fixed wrong exit code for no packets and deadline (#40323)
|
|
|
|
- Moved arping to /sbin from /usr/sbin due to ifup call (#45785). Symlink from
|
|
|
|
/usr/sbin/ provided for backwards compatibility.
|
|
|
|
|
|
|
|
* Mon Apr 30 2001 Preston Brown <pbrown@redhat.com>
|
|
|
|
- install in.rdisc.8c as rdisc.8
|
|
|
|
|
2004-09-09 06:20:37 +00:00
|
|
|
* Tue Jan 16 2001 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- update to ss001110
|
|
|
|
- doco fixes (#23844).
|
2004-09-09 06:20:26 +00:00
|
|
|
|
|
|
|
* Sun Oct 8 2000 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- update to ss001007.
|
|
|
|
|
2004-09-09 06:20:22 +00:00
|
|
|
* Tue Aug 8 2000 Tim Waugh <twaugh@redhat.com>
|
|
|
|
- fix spelling mistake (#15714).
|
|
|
|
|
|
|
|
* Tue Aug 8 2000 Tim Waugh <twaugh@redhat.com>
|
|
|
|
- turn on -U on machines without TSC (#15223).
|
|
|
|
|
|
|
|
* Tue Aug 1 2000 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- better doco patch (#15050).
|
|
|
|
|
|
|
|
* Tue Jul 25 2000 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- fix include-glibc/ to work with new glibc 2.2 resolver headers
|
|
|
|
|
|
|
|
* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
|
|
|
|
- automatic rebuild
|
|
|
|
|
|
|
|
* Sun Jun 18 2000 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- FHS packaging.
|
|
|
|
- update to ss000418.
|
|
|
|
- perform reverse DNS lookup only once for same input.
|
|
|
|
|
|
|
|
* Sun Mar 5 2000 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- include README.ifenslave doco.
|
|
|
|
- "ping -i N" was broke for N >= 3 (#9929).
|
|
|
|
- update to ss000121:
|
|
|
|
-- clockdiff: preserve raw socket errno.
|
|
|
|
-- ping: change error exit code to 1 (used to be 92,93, ...)
|
|
|
|
-- ping,ping6: if -w specified, transmit until -c limit is reached.
|
|
|
|
-- ping,ping6: exit code non-zero if some packets not received within deadline.
|
|
|
|
|
|
|
|
* Tue Feb 22 2000 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- man page corrections (#9690).
|
|
|
|
|
|
|
|
* Wed Feb 9 2000 Jeff Johnson <jbj@jbj.org>
|
|
|
|
- add ifenslave.
|
|
|
|
|
|
|
|
* Thu Feb 3 2000 Elliot Lee <sopwith@redhat.com>
|
2007-03-15 17:40:40 +00:00
|
|
|
- List /usr/sbin/rdisc in %%files list.
|
2004-09-09 06:20:22 +00:00
|
|
|
|
|
|
|
* Thu Jan 27 2000 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- add remaining binaries.
|
|
|
|
- casts to remove compilation warnings.
|
|
|
|
- terminate if -w deadline is reached exactly (#8724).
|
|
|
|
|
|
|
|
* Fri Dec 24 1999 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- create (only ping for now, traceroute et al soon).
|