forked from pool/firewalld
Accepting request 391120 from home:markoschandras:network
- Update to version 0.4.1.2 * Install fw_nm module * firewalld: Do not fail if log file could not be opened * Make ipsets visible per default in firewall-config * Fixed translations with python3 [changes in 0.4.1.1] * Fix for broken frensh translation [changes in 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 OBS-URL: https://build.opensuse.org/request/show/391120 OBS-URL: https://build.opensuse.org/package/show/security:netfilter/firewalld?expand=0&rev=11
This commit is contained in:
parent
13de59c0dd
commit
1e9c5f8253
4
_service
4
_service
@ -1,7 +1,7 @@
|
||||
<services>
|
||||
<service name="verify_file" mode="localonly">
|
||||
<param name="file">firewalld-0.4.0.tar.bz2</param>
|
||||
<param name="file">firewalld-0.4.1.2.tar.bz2</param>
|
||||
<param name="verifier">sha1</param>
|
||||
<param name="checksum">f1818ed82a3e3f14b4315a2dd32c2a268ce223b3</param>
|
||||
<param name="checksum">c7f3d04bd115b9a56a95fc7aee1a6d10559d2690</param>
|
||||
</service>
|
||||
</services>
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:858dca878c65853dec9044e3531a7ee4cd00a1766c268c354eb3480fe6e14914
|
||||
size 603881
|
3
firewalld-0.4.1.2.tar.bz2
Normal file
3
firewalld-0.4.1.2.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c444c2d9dfbd4036e3a5508824655d729acd6fb633d90cc0e99903d53b6654fa
|
||||
size 604940
|
@ -1,3 +1,40 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 21 08:15:19 UTC 2016 - mchandras@suse.de
|
||||
|
||||
- Update to version 0.4.1.2
|
||||
* Install fw_nm module
|
||||
* firewalld: Do not fail if log file could not be opened
|
||||
* Make ipsets visible per default in firewall-config
|
||||
* Fixed translations with python3
|
||||
[changes in 0.4.1.1]
|
||||
* Fix for broken frensh translation
|
||||
[changes in 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
|
||||
- Fix drop-standard-output-error-systemd.patch tagging
|
||||
- Add libxslt-tools build dependency
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 8 14:27:23 UTC 2016 - mchandras@suse.de
|
||||
|
||||
|
@ -17,14 +17,14 @@
|
||||
|
||||
|
||||
Name: firewalld
|
||||
Version: 0.4.0
|
||||
Version: 0.4.1.2
|
||||
Release: 0
|
||||
Summary: A firewall daemon with D-Bus interface providing a dynamic firewall
|
||||
License: GPL-2.0+
|
||||
Group: Productivity/Networking/Security
|
||||
Url: http://www.firewalld.org
|
||||
Source: https://fedorahosted.org/released/%{name}/%{name}-%{version}.tar.bz2
|
||||
# PATCH-FIX-UPSTREAM: drop-standard-output-error-systemd.patch,
|
||||
# PATCH-FIX-OPENSUSE: drop-standard-output-error-systemd.patch,
|
||||
# https://github.com/t-woerner/firewalld/pull/67(pending) -- Do not supress
|
||||
# stdout/stderr for firewalld
|
||||
Patch0: drop-standard-output-error-systemd.patch
|
||||
@ -35,7 +35,13 @@ BuildRequires: glib2-devel
|
||||
BuildRequires: gobject-introspection
|
||||
BuildRequires: hicolor-icon-theme
|
||||
BuildRequires: intltool
|
||||
BuildRequires: libxslt-tools
|
||||
BuildRequires: python-devel
|
||||
# Adding tools to BuildRequires as well so they can be autodetected
|
||||
# even though it is probably unlikely for paths to change in the future
|
||||
BuildRequires: ebtables
|
||||
BuildRequires: ipset
|
||||
BuildRequires: iptables
|
||||
Requires: dbus-1-python
|
||||
Requires: ebtables
|
||||
Requires: ipset
|
||||
|
Loading…
Reference in New Issue
Block a user