New firewalld version 0.4.1
- Enhancements of ipset handling - No cleanup of ipsets using timeouts while reloading - Only destroy conflicting ipsets - Only use ipset types supported by the system - Add and remove several ipset entries in one call using a file - Reduce time frame where builtin chains are on policy DROP while reloading - Include descriptions in --info-X calls - Command line interface support to get and alter descriptions of zones, services, ipsets and icmptypes with permanent option - Properly watch changes in combined zones - Fix logging in rich rule forward rules - Transformed direct.passthrough errors into warnings - Rework of import structures - Reduced calls to get ids for port and protocol names (RHBZ#1305434) - Build and installation fixes by Markos Chandras - Provide D-Bus properties in introspection data - Fix for flaws found by landscape.io - Fix for repeated SUGHUP - New NetworkManager module to get and set zones of connections, used in firewall-applet and firewall-config - configure: Autodetect backend tools ({ip,ip6,eb}tables{,-restore}, ipset) - Code cleanups - Bug fixes
This commit is contained in:
parent
1eb325692c
commit
59f898339e
1
.gitignore
vendored
1
.gitignore
vendored
@ -35,3 +35,4 @@
|
|||||||
/firewalld-0.3.14.1.tar.bz2
|
/firewalld-0.3.14.1.tar.bz2
|
||||||
/firewalld-0.3.14.2.tar.bz2
|
/firewalld-0.3.14.2.tar.bz2
|
||||||
/firewalld-0.4.0.tar.bz2
|
/firewalld-0.4.0.tar.bz2
|
||||||
|
/firewalld-0.4.1.tar.bz2
|
||||||
|
13
firewalld-0.4.1-fr.patch
Normal file
13
firewalld-0.4.1-fr.patch
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
diff --git a/po/fr.po b/po/fr.po
|
||||||
|
index a46c590..9647a73 100644
|
||||||
|
--- a/po/fr.po
|
||||||
|
+++ b/po/fr.po
|
||||||
|
@@ -132,7 +132,7 @@ msgstr "Zone à protection active :"
|
||||||
|
|
||||||
|
#: ../src/firewall-applet:233 ../src/firewall-applet:246
|
||||||
|
msgid "Reset To Default"
|
||||||
|
-msgstr "Réinitialiser aux paramètres par défaut\n"
|
||||||
|
+msgstr "Réinitialiser aux paramètres par défaut"
|
||||||
|
|
||||||
|
#: ../src/firewall-applet:237
|
||||||
|
msgid "Shields Down Zone:"
|
@ -7,8 +7,8 @@
|
|||||||
|
|
||||||
Summary: A firewall daemon with D-Bus interface providing a dynamic firewall
|
Summary: A firewall daemon with D-Bus interface providing a dynamic firewall
|
||||||
Name: firewalld
|
Name: firewalld
|
||||||
Version: 0.4.0
|
Version: 0.4.1
|
||||||
Release: 4%{?dist}
|
Release: 1%{?dist}
|
||||||
URL: http://www.firewalld.org
|
URL: http://www.firewalld.org
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
Source0: https://fedorahosted.org/released/firewalld/%{name}-%{version}.tar.bz2
|
Source0: https://fedorahosted.org/released/firewalld/%{name}-%{version}.tar.bz2
|
||||||
@ -18,8 +18,7 @@ Source2: FedoraWorkstation.xml
|
|||||||
%endif
|
%endif
|
||||||
%if 0%{?fedora}
|
%if 0%{?fedora}
|
||||||
Patch0: firewalld-0.2.6-MDNS-default.patch
|
Patch0: firewalld-0.2.6-MDNS-default.patch
|
||||||
Patch1: firewalld-0.4.0-tempdir_RHBZ1305175.patch
|
Patch1: firewalld-0.4.1-fr.patch
|
||||||
Patch2: firewalld-0.4.0-ALREADY_ENABLED_RHBZ1309754.patch
|
|
||||||
%endif
|
%endif
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRequires: desktop-file-utils
|
BuildRequires: desktop-file-utils
|
||||||
@ -175,7 +174,6 @@ Workstation product specific firewalld configuration settings.
|
|||||||
%if 0%{?fedora}
|
%if 0%{?fedora}
|
||||||
%patch0 -p1
|
%patch0 -p1
|
||||||
%patch1 -p1
|
%patch1 -p1
|
||||||
%patch2 -p1
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
%if 0%{?with_python3}
|
||||||
@ -488,6 +486,31 @@ fi
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Apr 19 2016 Thomas Woerner <twoerner@redhat.com> - 0.4.1-1
|
||||||
|
- Enhancements of ipset handling
|
||||||
|
- No cleanup of ipsets using timeouts while reloading
|
||||||
|
- Only destroy conflicting ipsets
|
||||||
|
- Only use ipset types supported by the system
|
||||||
|
- Add and remove several ipset entries in one call using a file
|
||||||
|
- Reduce time frame where builtin chains are on policy DROP while reloading
|
||||||
|
- Include descriptions in --info-X calls
|
||||||
|
- Command line interface support to get and alter descriptions of zones,
|
||||||
|
services, ipsets and icmptypes with permanent option
|
||||||
|
- Properly watch changes in combined zones
|
||||||
|
- Fix logging in rich rule forward rules
|
||||||
|
- Transformed direct.passthrough errors into warnings
|
||||||
|
- Rework of import structures
|
||||||
|
- Reduced calls to get ids for port and protocol names (RHBZ#1305434)
|
||||||
|
- Build and installation fixes by Markos Chandras
|
||||||
|
- Provide D-Bus properties in introspection data
|
||||||
|
- Fix for flaws found by landscape.io
|
||||||
|
- Fix for repeated SUGHUP
|
||||||
|
- New NetworkManager module to get and set zones of connections, used in
|
||||||
|
firewall-applet and firewall-config
|
||||||
|
- configure: Autodetect backend tools ({ip,ip6,eb}tables{,-restore}, ipset)
|
||||||
|
- Code cleanups
|
||||||
|
- Bug fixes
|
||||||
|
|
||||||
* Mon Feb 22 2016 Jiri Popelka <jpopelka@redhat.com> - 0.4.0-4
|
* Mon Feb 22 2016 Jiri Popelka <jpopelka@redhat.com> - 0.4.0-4
|
||||||
- Revert one commit to temporary work-around RHBZ#1309754
|
- Revert one commit to temporary work-around RHBZ#1309754
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user