Hello community, here is the log from the commit of package yast2-firewall for openSUSE:Factory checked in at 2018-01-28 00:36:52 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-firewall (Old) and /work/SRC/openSUSE:Factory/.yast2-firewall.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-firewall" Sun Jan 28 00:36:52 2018 rev:56 rq:567603 version:4.0.9 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-firewall/yast2-firewall.changes 2018-01-17 21:43:06.905880900 +0100 +++ /work/SRC/openSUSE:Factory/.yast2-firewall.new/yast2-firewall.changes 2018-01-28 00:36:53.216613953 +0100 @@ -1,0 +2,7 @@ +Fri Jan 19 08:44:25 UTC 2018 - knut.anders...@suse.com + +- AutoYaST: fixed default valur for log denied packets when using + SuSEFIrewall2 profiles (fate#323460) +- 4.0.9 + +------------------------------------------------------------------- Old: ---- yast2-firewall-4.0.8.tar.bz2 New: ---- yast2-firewall-4.0.9.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-firewall.spec ++++++ --- /var/tmp/diff_new_pack.q16jxZ/_old 2018-01-28 00:36:53.804586562 +0100 +++ /var/tmp/diff_new_pack.q16jxZ/_new 2018-01-28 00:36:53.808586375 +0100 @@ -17,7 +17,7 @@ Name: yast2-firewall -Version: 4.0.8 +Version: 4.0.9 Release: 0 BuildRoot: %{_tmppath}/%{name}-%{version}-build ++++++ yast2-firewall-4.0.8.tar.bz2 -> yast2-firewall-4.0.9.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-firewall-4.0.8/package/yast2-firewall.changes new/yast2-firewall-4.0.9/package/yast2-firewall.changes --- old/yast2-firewall-4.0.8/package/yast2-firewall.changes 2018-01-10 10:38:13.000000000 +0100 +++ new/yast2-firewall-4.0.9/package/yast2-firewall.changes 2018-01-19 10:28:54.000000000 +0100 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Fri Jan 19 08:44:25 UTC 2018 - knut.anders...@suse.com + +- AutoYaST: fixed default valur for log denied packets when using + SuSEFIrewall2 profiles (fate#323460) +- 4.0.9 + +------------------------------------------------------------------- Mon Jan 8 22:40:27 UTC 2018 - knut.anders...@suse.com - AutoYaST: Added support to set the default zone and export the diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-firewall-4.0.8/package/yast2-firewall.spec new/yast2-firewall-4.0.9/package/yast2-firewall.spec --- old/yast2-firewall-4.0.8/package/yast2-firewall.spec 2018-01-10 10:38:13.000000000 +0100 +++ new/yast2-firewall-4.0.9/package/yast2-firewall.spec 2018-01-19 10:28:54.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2-firewall -Version: 4.0.8 +Version: 4.0.9 Release: 0 BuildRoot: %{_tmppath}/%{name}-%{version}-build diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-firewall-4.0.8/src/lib/y2firewall/importer_strategies/suse_firewall.rb new/yast2-firewall-4.0.9/src/lib/y2firewall/importer_strategies/suse_firewall.rb --- old/yast2-firewall-4.0.8/src/lib/y2firewall/importer_strategies/suse_firewall.rb 2018-01-10 10:38:13.000000000 +0100 +++ new/yast2-firewall-4.0.9/src/lib/y2firewall/importer_strategies/suse_firewall.rb 2018-01-19 10:28:54.000000000 +0100 @@ -116,7 +116,7 @@ # Return whether the given zone name is the default one. # - # @param zone_name [String + # @param zone_name [String] # @return [Boolean] true if the zone name is the default one; false # otherwise def default_zone?(zone_name) @@ -225,7 +225,7 @@ # Return which denied packets to log that match better with the # SuSEFirewall logging config. # - # @return [String] all, unicast or none depending on the log config + # @return [String] all, unicast or off depending on the log config def log_denied_packets accept_crit = profile.fetch("FW_LOG_ACCEPT_CRIT", "no") == "yes" drop_all = profile.fetch("FW_LOG_DROPT_ALL", "no") == "yes" @@ -236,7 +236,7 @@ elsif accept_crit || drop_crit "unicast" else - "none" + "off" end end