Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package yast2-installation-control for openSUSE:Factory checked in at 2022-01-14 23:12:56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-installation-control (Old) and /work/SRC/openSUSE:Factory/.yast2-installation-control.new.1892 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-installation-control" Fri Jan 14 23:12:56 2022 rev:46 rq:946165 version:4.4.9 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-installation-control/yast2-installation-control.changes 2022-01-09 22:50:08.819282594 +0100 +++ /work/SRC/openSUSE:Factory/.yast2-installation-control.new.1892/yast2-installation-control.changes 2022-01-14 23:13:48.814653951 +0100 @@ -1,0 +2,8 @@ +Tue Jan 11 09:00:19 UTC 2022 - Knut Anderssen <kanders...@suse.com> + +Related to jsc#SLE-22069: + - LSM section: added "none" section in order to mark it as not + selectable during the installation. +- 4.4.9 + +------------------------------------------------------------------- Old: ---- yast2-installation-control-4.4.8.tar.bz2 New: ---- yast2-installation-control-4.4.9.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-installation-control.spec ++++++ --- /var/tmp/diff_new_pack.xm17GK/_old 2022-01-14 23:13:49.206654204 +0100 +++ /var/tmp/diff_new_pack.xm17GK/_new 2022-01-14 23:13:49.210654206 +0100 @@ -17,7 +17,7 @@ Name: yast2-installation-control -Version: 4.4.8 +Version: 4.4.9 Release: 0 Summary: YaST2 - RNG schema for installation control files License: GPL-2.0-only ++++++ yast2-installation-control-4.4.8.tar.bz2 -> yast2-installation-control-4.4.9.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-control-4.4.8/.github/workflows/ci.yml new/yast2-installation-control-4.4.9/.github/workflows/ci.yml --- old/yast2-installation-control-4.4.8/.github/workflows/ci.yml 2022-01-07 16:27:47.000000000 +0100 +++ new/yast2-installation-control-4.4.9/.github/workflows/ci.yml 2022-01-13 14:49:08.000000000 +0100 @@ -8,8 +8,14 @@ jobs: Package: runs-on: ubuntu-latest + + strategy: + fail-fast: false + matrix: + distro: [ "tumbleweed", "leap_latest" ] + container: - image: registry.opensuse.org/yast/head/containers/yast-ruby:latest + image: registry.opensuse.org/yast/head/containers_${{matrix.distro}}/yast-ruby steps: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-control-4.4.8/control/control.rnc new/yast2-installation-control-4.4.9/control/control.rnc --- old/yast2-installation-control-4.4.8/control/control.rnc 2022-01-07 16:27:47.000000000 +0100 +++ new/yast2-installation-control-4.4.9/control/control.rnc 2022-01-13 14:49:08.000000000 +0100 @@ -321,6 +321,7 @@ lsm_select? & lsm_configurable? & lsm_selectable? & + none_module? & selinux? & apparmor? ) @@ -333,11 +334,17 @@ | lsm_selectable | lsm_patterns + ## AppArmor options apparmor = element apparmor { MAP, lsm_module* } +# None options +none_module = element none { MAP, + lsm_selectable? +} + ## SELinux mode selinux_mode = element mode { "disabled" | "permissive" | "enforcing" } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-control-4.4.8/control/control.rng new/yast2-installation-control-4.4.9/control/control.rng --- old/yast2-installation-control-4.4.8/control/control.rng 2022-01-07 16:27:47.000000000 +0100 +++ new/yast2-installation-control-4.4.9/control/control.rng 2022-01-13 14:49:08.000000000 +0100 @@ -663,6 +663,9 @@ <ref name="lsm_selectable"/> </optional> <optional> + <ref name="none_module"/> + </optional> + <optional> <ref name="selinux"/> </optional> <optional> @@ -697,6 +700,15 @@ </zeroOrMore> </element> </define> + <!-- None options --> + <define name="none_module"> + <element name="none"> + <ref name="MAP"/> + <optional> + <ref name="lsm_selectable"/> + </optional> + </element> + </define> <define name="selinux_mode"> <a:documentation>SELinux mode</a:documentation> <element name="mode"> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-control-4.4.8/package/yast2-installation-control.changes new/yast2-installation-control-4.4.9/package/yast2-installation-control.changes --- old/yast2-installation-control-4.4.8/package/yast2-installation-control.changes 2022-01-07 16:27:47.000000000 +0100 +++ new/yast2-installation-control-4.4.9/package/yast2-installation-control.changes 2022-01-13 14:49:08.000000000 +0100 @@ -1,4 +1,12 @@ ------------------------------------------------------------------- +Tue Jan 11 09:00:19 UTC 2022 - Knut Anderssen <kanders...@suse.com> + +Related to jsc#SLE-22069: + - LSM section: added "none" section in order to mark it as not + selectable during the installation. +- 4.4.9 + +------------------------------------------------------------------- Tue Jan 4 11:47:25 UTC 2022 - Knut Anderssen <kanders...@suse.com> - LSM section: added "selectable" option to the section diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-control-4.4.8/package/yast2-installation-control.spec new/yast2-installation-control-4.4.9/package/yast2-installation-control.spec --- old/yast2-installation-control-4.4.8/package/yast2-installation-control.spec 2022-01-07 16:27:47.000000000 +0100 +++ new/yast2-installation-control-4.4.9/package/yast2-installation-control.spec 2022-01-13 14:49:08.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2-installation-control -Version: 4.4.8 +Version: 4.4.9 Release: 0 Summary: YaST2 - RNG schema for installation control files License: GPL-2.0-only