- Resolves: #455713 remove suid from ping
- corrected typing error in man
This commit is contained in:
parent
f86a533db1
commit
3717a59938
12
iputils-20071127-typing_bug.patch
Normal file
12
iputils-20071127-typing_bug.patch
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
diff -up iputils-s20071127/doc/tracepath.sgml.typing_bug iputils-s20071127/doc/tracepath.sgml
|
||||||
|
--- iputils-s20071127/doc/tracepath.sgml.typing_bug 2008-08-05 15:29:51.000000000 +0200
|
||||||
|
+++ iputils-s20071127/doc/tracepath.sgml 2008-08-05 15:30:12.000000000 +0200
|
||||||
|
@@ -99,7 +99,7 @@ with TTL of 2 was rejected at the first
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
-Te last line summarizes information about all the path to the destination,
|
||||||
|
+The last line summarizes information about all the path to the destination,
|
||||||
|
it shows detected Path MTU, amount of hops to the destination and our
|
||||||
|
guess about amount of hops from the destination to us, which can be
|
||||||
|
different when the path is asymmetric.
|
15
iputils.spec
15
iputils.spec
@ -1,7 +1,7 @@
|
|||||||
Summary: Network monitoring tools including ping
|
Summary: Network monitoring tools including ping
|
||||||
Name: iputils
|
Name: iputils
|
||||||
Version: 20071127
|
Version: 20071127
|
||||||
Release: 3%{?dist}
|
Release: 4%{?dist}
|
||||||
License: BSD
|
License: BSD
|
||||||
URL: http://www.skbuff.net/iputils
|
URL: http://www.skbuff.net/iputils
|
||||||
Group: System Environment/Daemons
|
Group: System Environment/Daemons
|
||||||
@ -24,6 +24,7 @@ Patch10: iputils-20070202-arping_timeout.patch
|
|||||||
Patch11: iputils-20071127-output.patch
|
Patch11: iputils-20071127-output.patch
|
||||||
Patch12: iputils-20070202-ia64_align.patch
|
Patch12: iputils-20070202-ia64_align.patch
|
||||||
Patch13: iputils-20071127-warnings.patch
|
Patch13: iputils-20071127-warnings.patch
|
||||||
|
Patch14: iputils-20071127-typing_bug.patch
|
||||||
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
BuildRequires: docbook-utils perl-SGMLSpm
|
BuildRequires: docbook-utils perl-SGMLSpm
|
||||||
@ -31,6 +32,7 @@ BuildRequires: glibc-kernheaders >= 2.4-8.19
|
|||||||
BuildRequires: libsysfs-devel
|
BuildRequires: libsysfs-devel
|
||||||
BuildRequires: libidn-devel
|
BuildRequires: libidn-devel
|
||||||
Requires(post): /sbin/chkconfig
|
Requires(post): /sbin/chkconfig
|
||||||
|
Requires(post): /usr/sbin/setcap
|
||||||
Requires(preun): /sbin/chkconfig
|
Requires(preun): /sbin/chkconfig
|
||||||
Requires(preun): /sbin/service
|
Requires(preun): /sbin/service
|
||||||
Requires(postun): /sbin/service
|
Requires(postun): /sbin/service
|
||||||
@ -58,6 +60,7 @@ the target machine is alive and receiving network traffic.
|
|||||||
%patch11 -p1 -b .output
|
%patch11 -p1 -b .output
|
||||||
%patch12 -p1 -b .ia64_align
|
%patch12 -p1 -b .ia64_align
|
||||||
%patch13 -p1 -b .warnings
|
%patch13 -p1 -b .warnings
|
||||||
|
%patch14 -p1 -b .typing_bug
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%ifarch s390 s390x
|
%ifarch s390 s390x
|
||||||
@ -109,6 +112,8 @@ mv -f RELNOTES.tmp RELNOTES
|
|||||||
|
|
||||||
%post
|
%post
|
||||||
/sbin/chkconfig --add rdisc
|
/sbin/chkconfig --add rdisc
|
||||||
|
/usr/sbin/setcap cap_net_raw=ep /bin/ping
|
||||||
|
/usr/sbin/setcap cap_net_raw=ep /bin/ping6
|
||||||
|
|
||||||
%preun
|
%preun
|
||||||
if [ $1 = 0 ]; then
|
if [ $1 = 0 ]; then
|
||||||
@ -134,10 +139,10 @@ rm -rf ${RPM_BUILD_ROOT}
|
|||||||
%{_sbindir}/clockdiff
|
%{_sbindir}/clockdiff
|
||||||
/sbin/arping
|
/sbin/arping
|
||||||
%{_sbindir}/arping
|
%{_sbindir}/arping
|
||||||
%attr(4755,root,root) /bin/ping
|
%attr(0755,root,root) /bin/ping
|
||||||
/sbin/ifenslave
|
/sbin/ifenslave
|
||||||
/sbin/rdisc
|
/sbin/rdisc
|
||||||
%attr(4755,root,root) /bin/ping6
|
%attr(0755,root,root) /bin/ping6
|
||||||
/bin/tracepath
|
/bin/tracepath
|
||||||
/bin/tracepath6
|
/bin/tracepath6
|
||||||
%{_sbindir}/ping6
|
%{_sbindir}/ping6
|
||||||
@ -147,6 +152,10 @@ rm -rf ${RPM_BUILD_ROOT}
|
|||||||
%{_sysconfdir}/rc.d/init.d/rdisc
|
%{_sysconfdir}/rc.d/init.d/rdisc
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Aug 06 2008 Jiri Skala <jskala@redhat.com> - 20071127-4
|
||||||
|
- Resolves: #455713 remove suid from ping
|
||||||
|
- corrected typing error in man
|
||||||
|
|
||||||
* Tue Jun 03 2008 Martin Nagy <mnagy@redhat.com> - 20071127-3
|
* Tue Jun 03 2008 Martin Nagy <mnagy@redhat.com> - 20071127-3
|
||||||
- major patch cleanup so it will be easier to get patches upstream
|
- major patch cleanup so it will be easier to get patches upstream
|
||||||
- fix for #68212, previous fix actually didn't work for ping6
|
- fix for #68212, previous fix actually didn't work for ping6
|
||||||
|
Loading…
Reference in New Issue
Block a user