Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package autoyast2 for openSUSE:Factory checked in at 2025-04-04 17:28:38 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/autoyast2 (Old) and /work/SRC/openSUSE:Factory/.autoyast2.new.1907 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "autoyast2" Fri Apr 4 17:28:38 2025 rev:340 rq:1266806 version:5.0.6 Changes: -------- --- /work/SRC/openSUSE:Factory/autoyast2/autoyast2.changes 2025-03-24 13:25:24.890705520 +0100 +++ /work/SRC/openSUSE:Factory/.autoyast2.new.1907/autoyast2.changes 2025-04-04 17:28:42.847035639 +0200 @@ -1,0 +2,8 @@ +Thu Mar 27 17:24:54 UTC 2025 - Knut Anderssen <kanders...@suse.com> + +- Load default security settings before importing the section to + ensure the settings are set in case there is no security section + defined and run without confirmation dialog (bsc#1231490) +- 5.0.6 + +------------------------------------------------------------------- Old: ---- autoyast2-5.0.5.tar.bz2 New: ---- autoyast2-5.0.6.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ autoyast2.spec ++++++ --- /var/tmp/diff_new_pack.JXc1bb/_old 2025-04-04 17:28:43.591066673 +0200 +++ /var/tmp/diff_new_pack.JXc1bb/_new 2025-04-04 17:28:43.591066673 +0200 @@ -22,7 +22,7 @@ %endif Name: autoyast2 -Version: 5.0.5 +Version: 5.0.6 Release: 0 Summary: YaST2 - Automated Installation License: GPL-2.0-only ++++++ autoyast2-5.0.5.tar.bz2 -> autoyast2-5.0.6.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/autoyast2-5.0.5/package/autoyast2.changes new/autoyast2-5.0.6/package/autoyast2.changes --- old/autoyast2-5.0.5/package/autoyast2.changes 2025-03-21 14:48:49.000000000 +0100 +++ new/autoyast2-5.0.6/package/autoyast2.changes 2025-04-03 10:15:55.000000000 +0200 @@ -1,4 +1,12 @@ ------------------------------------------------------------------- +Thu Mar 27 17:24:54 UTC 2025 - Knut Anderssen <kanders...@suse.com> + +- Load default security settings before importing the section to + ensure the settings are set in case there is no security section + defined and run without confirmation dialog (bsc#1231490) +- 5.0.6 + +------------------------------------------------------------------- Thu Mar 20 10:50:34 UTC 2025 - Imobach Gonzalez Sosa <igonzalezs...@suse.com> - Allow skipping profile fetch errors by setting diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/autoyast2-5.0.5/package/autoyast2.spec new/autoyast2-5.0.6/package/autoyast2.spec --- old/autoyast2-5.0.5/package/autoyast2.spec 2025-03-21 14:48:49.000000000 +0100 +++ new/autoyast2-5.0.6/package/autoyast2.spec 2025-04-03 10:15:55.000000000 +0200 @@ -22,7 +22,7 @@ %endif Name: autoyast2 -Version: 5.0.5 +Version: 5.0.6 Release: 0 Summary: YaST2 - Automated Installation License: GPL-2.0-only diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/autoyast2-5.0.5/src/lib/autoinstall/clients/inst_autosetup.rb new/autoyast2-5.0.6/src/lib/autoinstall/clients/inst_autosetup.rb --- old/autoyast2-5.0.5/src/lib/autoinstall/clients/inst_autosetup.rb 2025-03-21 14:48:49.000000000 +0100 +++ new/autoyast2-5.0.6/src/lib/autoinstall/clients/inst_autosetup.rb 2025-04-03 10:15:55.000000000 +0200 @@ -430,6 +430,10 @@ # # @return [Boolean] Determine whether the import was successful def autosetup_security + require "installation/security_settings" + # Force to propose defaults for security and security policy configuration + @settings ||= ::Installation::SecuritySettings.instance + result = importer.import_entry("security") result.sections.each { |e| Profile.remove_sections(e) } result.success?