Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package yast2-security for openSUSE:Factory checked in at 2026-02-11 19:12:13 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-security (Old) and /work/SRC/openSUSE:Factory/.yast2-security.new.1670 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-security" Wed Feb 11 19:12:13 2026 rev:127 rq:1332255 version:5.0.4 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-security/yast2-security.changes 2025-04-11 16:46:02.273354734 +0200 +++ /work/SRC/openSUSE:Factory/.yast2-security.new.1670/yast2-security.changes 2026-02-11 19:12:17.524660989 +0100 @@ -1,0 +2,7 @@ +Thu Feb 5 13:18:03 UTC 2026 - Robert Frohl <[email protected]> + +- write proper /etc/selinux/config according to expected format + (bsc#1257752) +- 5.0.4 + +------------------------------------------------------------------- @@ -236 +242,0 @@ - Old: ---- yast2-security-5.0.3.tar.bz2 New: ---- yast2-security-5.0.4.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-security.spec ++++++ --- /var/tmp/diff_new_pack.moDCKB/_old 2026-02-11 19:12:18.212689959 +0100 +++ /var/tmp/diff_new_pack.moDCKB/_new 2026-02-11 19:12:18.216690128 +0100 @@ -1,7 +1,7 @@ # # spec file for package yast2-security # -# Copyright (c) 2025 SUSE LLC +# Copyright (c) 2026 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: yast2-security -Version: 5.0.3 +Version: 5.0.4 Release: 0 Group: System/YaST License: GPL-2.0-only ++++++ yast2-security-5.0.3.tar.bz2 -> yast2-security-5.0.4.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-security-5.0.3/package/yast2-security.changes new/yast2-security-5.0.4/package/yast2-security.changes --- old/yast2-security-5.0.3/package/yast2-security.changes 2025-04-09 21:36:00.000000000 +0200 +++ new/yast2-security-5.0.4/package/yast2-security.changes 2026-02-09 17:41:09.000000000 +0100 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Thu Feb 5 13:18:03 UTC 2026 - Robert Frohl <[email protected]> + +- write proper /etc/selinux/config according to expected format + (bsc#1257752) +- 5.0.4 + +------------------------------------------------------------------- Wed Apr 9 08:12:01 UTC 2025 - Josef Reidinger <[email protected]> - Do not write selinux mode to kernel command line and keep it only @@ -233,7 +240,6 @@ - 4.3.9 ------------------------------------------------------------------- - Mon Feb 15 11:35:59 UTC 2021 - Josef Reidinger <[email protected]> - Adapted unit test to recent changes in Yast::Report (related to diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-security-5.0.3/package/yast2-security.spec new/yast2-security-5.0.4/package/yast2-security.spec --- old/yast2-security-5.0.3/package/yast2-security.spec 2025-04-09 21:36:00.000000000 +0200 +++ new/yast2-security-5.0.4/package/yast2-security.spec 2026-02-09 17:41:09.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2-security -Version: 5.0.3 +Version: 5.0.4 Release: 0 Group: System/YaST License: GPL-2.0-only diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-security-5.0.3/src/lib/cfa/selinux.rb new/yast2-security-5.0.4/src/lib/cfa/selinux.rb --- old/yast2-security-5.0.3/src/lib/cfa/selinux.rb 2025-04-09 21:36:00.000000000 +0200 +++ new/yast2-security-5.0.4/src/lib/cfa/selinux.rb 2026-02-09 17:41:09.000000000 +0100 @@ -86,7 +86,7 @@ # # @note uses the simplevars lens instead of semanage because the latest is only available from # augeas-lenses >= 1.12. See https://github.com/hercules-team/augeas/pull/594/files - LENS = "simplevars.lns".freeze + LENS = "shellvars.lns".freeze private_constant :LENS end end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-security-5.0.3/test/cfa/selinux_test.rb new/yast2-security-5.0.4/test/cfa/selinux_test.rb --- old/yast2-security-5.0.3/test/cfa/selinux_test.rb 2025-04-09 21:36:00.000000000 +0200 +++ new/yast2-security-5.0.4/test/cfa/selinux_test.rb 2026-02-09 17:41:09.000000000 +0100 @@ -33,8 +33,8 @@ describe ".load" do context "when file exist" do - it "creates an own Augeas instance using simplevars lens" do - expect(::CFA::AugeasParser).to receive(:new).with("simplevars.lns").and_call_original + it "creates an own Augeas instance using shellvars lens" do + expect(::CFA::AugeasParser).to receive(:new).with("shellvars.lns").and_call_original described_class.load(file_path: file_path, file_handler: file_handler) end @@ -49,8 +49,8 @@ context "when file does not exist" do let(:file_path) { "/file/not/created/yet" } - it "creates an own Augeas instance using simplevars lens" do - expect(::CFA::AugeasParser).to receive(:new).with("simplevars.lns").and_call_original + it "creates an own Augeas instance using shellvars lens" do + expect(::CFA::AugeasParser).to receive(:new).with("shellvars.lns").and_call_original described_class.load(file_path: file_path, file_handler: file_handler) end @@ -64,8 +64,8 @@ end describe "#initialize" do - it "creates an own Augeas instance using simplevars lens" do - expect(::CFA::AugeasParser).to receive(:new).with("simplevars.lns").and_call_original + it "creates an own Augeas instance using shellvars lens" do + expect(::CFA::AugeasParser).to receive(:new).with("shellvars.lns").and_call_original described_class.new(file_handler: file_handler) end
