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 2022-02-23 16:25:45 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-security (Old) and /work/SRC/openSUSE:Factory/.yast2-security.new.1958 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-security" Wed Feb 23 16:25:45 2022 rev:114 rq:956637 version:4.4.12 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-security/yast2-security.changes 2022-02-06 23:55:17.122415296 +0100 +++ /work/SRC/openSUSE:Factory/.yast2-security.new.1958/yast2-security.changes 2022-02-23 16:26:01.135507905 +0100 @@ -1,0 +2,7 @@ +Tue Feb 22 08:08:56 UTC 2022 - David Diaz <dgonza...@suse.com> + +- Stop using 'lsm' kernel boot parameter even for the + "None" Major Linux Security Module (bsc#1194332, bsc#1196274). +- 4.4.12 + +------------------------------------------------------------------- Old: ---- yast2-security-4.4.11.tar.bz2 New: ---- yast2-security-4.4.12.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-security.spec ++++++ --- /var/tmp/diff_new_pack.RlKV56/_old 2022-02-23 16:26:02.835507966 +0100 +++ /var/tmp/diff_new_pack.RlKV56/_new 2022-02-23 16:26:02.839507965 +0100 @@ -17,7 +17,7 @@ Name: yast2-security -Version: 4.4.11 +Version: 4.4.12 Release: 0 Summary: YaST2 - Security Configuration License: GPL-2.0-only ++++++ yast2-security-4.4.11.tar.bz2 -> yast2-security-4.4.12.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-security-4.4.11/package/yast2-security.changes new/yast2-security-4.4.12/package/yast2-security.changes --- old/yast2-security-4.4.11/package/yast2-security.changes 2022-02-04 10:25:37.000000000 +0100 +++ new/yast2-security-4.4.12/package/yast2-security.changes 2022-02-22 09:47:11.000000000 +0100 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Tue Feb 22 08:08:56 UTC 2022 - David Diaz <dgonza...@suse.com> + +- Stop using 'lsm' kernel boot parameter even for the + "None" Major Linux Security Module (bsc#1194332, bsc#1196274). +- 4.4.12 + +------------------------------------------------------------------- Fri Feb 4 09:19:19 UTC 2022 - Knut Anderssen <kanders...@suse.com> - Fixed Export unit test (related to jsc#SLE-22069). diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-security-4.4.11/package/yast2-security.spec new/yast2-security-4.4.12/package/yast2-security.spec --- old/yast2-security-4.4.11/package/yast2-security.spec 2022-02-04 10:25:37.000000000 +0100 +++ new/yast2-security-4.4.12/package/yast2-security.spec 2022-02-22 09:47:11.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2-security -Version: 4.4.11 +Version: 4.4.12 Release: 0 Group: System/YaST License: GPL-2.0-only diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-security-4.4.11/src/lib/y2security/lsm/none.rb new/yast2-security-4.4.12/src/lib/y2security/lsm/none.rb --- old/yast2-security-4.4.11/src/lib/y2security/lsm/none.rb 2022-02-04 10:25:37.000000000 +0100 +++ new/yast2-security-4.4.12/src/lib/y2security/lsm/none.rb 2022-02-22 09:47:11.000000000 +0100 @@ -40,7 +40,7 @@ # @see Base#kernel_params def kernel_params - { "lsm" => "" } + { "security" => "" } end # @see Base#kernel_options diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-security-4.4.11/test/y2security/lsm/none_test.rb new/yast2-security-4.4.12/test/y2security/lsm/none_test.rb --- old/yast2-security-4.4.11/test/y2security/lsm/none_test.rb 2022-02-04 10:25:37.000000000 +0100 +++ new/yast2-security-4.4.12/test/y2security/lsm/none_test.rb 2022-02-22 09:47:11.000000000 +0100 @@ -39,8 +39,8 @@ expect(subject.kernel_params).to be_a(Hash) end - it "includes the key 'lsm' with an empty string as the value" do - expect(subject.kernel_params).to include("lsm" => "") + it "includes the key 'security' with an empty string as the value" do + expect(subject.kernel_params).to include("security" => "") end end