!17 【LTS升级】update iptables to 1.8.5
Merge pull request !17 from yu_boyun/openEuler-20.03-LTS
This commit is contained in:
commit
f7b63856f6
Binary file not shown.
BIN
iptables-1.8.5.tar.bz2
Normal file
BIN
iptables-1.8.5.tar.bz2
Normal file
Binary file not shown.
@ -1,33 +0,0 @@
|
|||||||
From 6c3a1a5c29a7c41af9da1a3bbf137df994479518 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Phil Sutter <psutter@redhat.com>
|
|
||||||
Date: Fri, 12 Apr 2019 18:02:19 +0200
|
|
||||||
Subject: [PATCH] iptables-apply: Use mktemp instead of tempfile
|
|
||||||
|
|
||||||
---
|
|
||||||
iptables-apply | 4 ++--
|
|
||||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/iptables-apply b/iptables-apply
|
|
||||||
index 819ca4a..a685b6b 100755
|
|
||||||
--- a/iptables/iptables-apply
|
|
||||||
+++ b/iptables/iptables-apply
|
|
||||||
@@ -111,7 +111,7 @@ if [[ ! -r "$FILE" ]]; then
|
|
||||||
exit 2
|
|
||||||
fi
|
|
||||||
|
|
||||||
-COMMANDS=(tempfile "$SAVE" "$RESTORE")
|
|
||||||
+COMMANDS=(mktemp "$SAVE" "$RESTORE")
|
|
||||||
|
|
||||||
for cmd in "${COMMANDS[@]}"; do
|
|
||||||
if ! command -v $cmd >/dev/null; then
|
|
||||||
@@ -122,7 +122,7 @@ done
|
|
||||||
|
|
||||||
umask 0700
|
|
||||||
|
|
||||||
-TMPFILE=$(tempfile -p iptap)
|
|
||||||
+TMPFILE=$(mktemp)
|
|
||||||
trap "rm -f $TMPFILE" EXIT HUP INT QUIT ILL TRAP ABRT BUS \
|
|
||||||
FPE USR1 SEGV USR2 PIPE ALRM TERM
|
|
||||||
|
|
||||||
--
|
|
||||||
1.8.3.1
|
|
||||||
@ -1,8 +1,8 @@
|
|||||||
%global script_path %{_libexecdir}/iptables
|
%global script_path %{_libexecdir}/iptables
|
||||||
%global legacy_actions %{_libexecdir}/initscripts/legacy-actions
|
%global legacy_actions %{_libexecdir}/initscripts/legacy-actions
|
||||||
Name: iptables
|
Name: iptables
|
||||||
Version: 1.8.4
|
Version: 1.8.5
|
||||||
Release: 6
|
Release: 1
|
||||||
Summary: IP packet filter administration utilities
|
Summary: IP packet filter administration utilities
|
||||||
License: GPLv2 and Artistic Licence 2.0 and ISC
|
License: GPLv2 and Artistic Licence 2.0 and ISC
|
||||||
URL: https://www.netfilter.org/
|
URL: https://www.netfilter.org/
|
||||||
@ -13,8 +13,6 @@ Source3: iptables.service
|
|||||||
Source4: sysconfig_iptables
|
Source4: sysconfig_iptables
|
||||||
Source5: sysconfig_ip6tables
|
Source5: sysconfig_ip6tables
|
||||||
|
|
||||||
Patch1: iptables-apply-Use-mktemp-instead-of-tempfile.patch
|
|
||||||
|
|
||||||
BuildRequires: bison flex gcc kernel-headers libpcap-devel libselinux-devel systemd git
|
BuildRequires: bison flex gcc kernel-headers libpcap-devel libselinux-devel systemd git
|
||||||
BuildRequires: libmnl-devel libnetfilter_conntrack-devel libnfnetlink-devel libnftnl-devel
|
BuildRequires: libmnl-devel libnetfilter_conntrack-devel libnfnetlink-devel libnftnl-devel
|
||||||
BuildRequires: autogen autoconf automake libtool iptables
|
BuildRequires: autogen autoconf automake libtool iptables
|
||||||
@ -239,6 +237,7 @@ fi
|
|||||||
%{_sbindir}/nfnl_osf
|
%{_sbindir}/nfnl_osf
|
||||||
%{_sbindir}/nfbpf_*
|
%{_sbindir}/nfbpf_*
|
||||||
%{_sbindir}/iptables-apply
|
%{_sbindir}/iptables-apply
|
||||||
|
%{_sbindir}/ip6tables-apply
|
||||||
%{_sbindir}/ip*tables-legacy*
|
%{_sbindir}/ip*tables-legacy*
|
||||||
%{_sbindir}/xtables-legacy-multi
|
%{_sbindir}/xtables-legacy-multi
|
||||||
%exclude %{_sbindir}/*-nft*
|
%exclude %{_sbindir}/*-nft*
|
||||||
@ -316,6 +315,12 @@ fi
|
|||||||
%{_mandir}/man8/xtables-legacy*
|
%{_mandir}/man8/xtables-legacy*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Aug 26 yuboyun <yuboyun@huawei.com> - 1.8.5-1
|
||||||
|
- Type: bugfix
|
||||||
|
- ID: NA
|
||||||
|
- SUG: NA
|
||||||
|
- update to 1.8.5
|
||||||
|
|
||||||
* Tue Jun 2 2020 gaihuiying <gaihuiying1@huawei.com> - 1.8.4-6
|
* Tue Jun 2 2020 gaihuiying <gaihuiying1@huawei.com> - 1.8.4-6
|
||||||
- Type: bugfix
|
- Type: bugfix
|
||||||
- ID: NA
|
- ID: NA
|
||||||
@ -375,4 +380,3 @@ fi
|
|||||||
|
|
||||||
* Fri Sep 20 2019 openEuler Buildteam <buildteam@openeuler.org> - 1.8.0-5
|
* Fri Sep 20 2019 openEuler Buildteam <buildteam@openeuler.org> - 1.8.0-5
|
||||||
- Package init
|
- Package init
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user