Hello community,
here is the log from the commit of package yast2-firstboot for openSUSE:Factory
checked in at 2020-12-09 22:11:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-firstboot (Old)
and /work/SRC/openSUSE:Factory/.yast2-firstboot.new.2328 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-firstboot"
Wed Dec 9 22:11:14 2020 rev:100 rq:853529 version:4.3.9
Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-firstboot/yast2-firstboot.changes
2020-11-23 16:26:14.780479102 +0100
+++
/work/SRC/openSUSE:Factory/.yast2-firstboot.new.2328/yast2-firstboot.changes
2020-12-09 22:11:15.747057376 +0100
@@ -1,0 +2,9 @@
+Fri Dec 4 16:12:43 UTC 2020 - Stefan Schubert <[email protected]>
+
+- Fix: Starting YaST2 Control Center if the flag SHOW_Y2CC_CHECKBOX
+ has been set in /etc/sysconfig/firstboot and the user has
+ selected it while the firstboot installation workflow
+ (bsc#1178834).
+- 4.3.9
+
+-------------------------------------------------------------------
Old:
----
yast2-firstboot-4.3.8.tar.bz2
New:
----
yast2-firstboot-4.3.9.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ yast2-firstboot.spec ++++++
--- /var/tmp/diff_new_pack.shHg7M/_old 2020-12-09 22:11:16.231057866 +0100
+++ /var/tmp/diff_new_pack.shHg7M/_new 2020-12-09 22:11:16.235057870 +0100
@@ -17,7 +17,7 @@
Name: yast2-firstboot
-Version: 4.3.8
+Version: 4.3.9
Release: 0
Summary: YaST2 - Initial System Configuration
License: GPL-2.0-only
++++++ yast2-firstboot-4.3.8.tar.bz2 -> yast2-firstboot-4.3.9.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/yast2-firstboot-4.3.8/control/firstboot.xml
new/yast2-firstboot-4.3.9/control/firstboot.xml
--- old/yast2-firstboot-4.3.8/control/firstboot.xml 2020-11-16
11:18:24.000000000 +0100
+++ new/yast2-firstboot-4.3.9/control/firstboot.xml 2020-12-07
09:59:34.000000000 +0100
@@ -172,7 +172,7 @@
</module>
<module>
<label>Finish Setup</label>
- <name>inst_congratulate</name>
+ <name>firstboot_finish</name>
<enable_back>no</enable_back>
<enable_next>yes</enable_next>
</module>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-firstboot-4.3.8/package/yast2-firstboot.changes
new/yast2-firstboot-4.3.9/package/yast2-firstboot.changes
--- old/yast2-firstboot-4.3.8/package/yast2-firstboot.changes 2020-11-16
11:18:24.000000000 +0100
+++ new/yast2-firstboot-4.3.9/package/yast2-firstboot.changes 2020-12-07
09:59:34.000000000 +0100
@@ -1,4 +1,13 @@
-------------------------------------------------------------------
+Fri Dec 4 16:12:43 UTC 2020 - Stefan Schubert <[email protected]>
+
+- Fix: Starting YaST2 Control Center if the flag SHOW_Y2CC_CHECKBOX
+ has been set in /etc/sysconfig/firstboot and the user has
+ selected it while the firstboot installation workflow
+ (bsc#1178834).
+- 4.3.9
+
+-------------------------------------------------------------------
Mon Nov 16 09:18:59 UTC 2020 - Knut Anderssen <[email protected]>
- Removed duplicated lan client from the firstboot control file and
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/yast2-firstboot-4.3.8/package/yast2-firstboot.spec
new/yast2-firstboot-4.3.9/package/yast2-firstboot.spec
--- old/yast2-firstboot-4.3.8/package/yast2-firstboot.spec 2020-11-16
11:18:24.000000000 +0100
+++ new/yast2-firstboot-4.3.9/package/yast2-firstboot.spec 2020-12-07
09:59:34.000000000 +0100
@@ -16,7 +16,7 @@
#
Name: yast2-firstboot
-Version: 4.3.8
+Version: 4.3.9
Release: 0
Summary: YaST2 - Initial System Configuration
Group: System/YaST
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-firstboot-4.3.8/src/clients/firstboot_finish.rb
new/yast2-firstboot-4.3.9/src/clients/firstboot_finish.rb
--- old/yast2-firstboot-4.3.8/src/clients/firstboot_finish.rb 2020-11-16
11:18:24.000000000 +0100
+++ new/yast2-firstboot-4.3.9/src/clients/firstboot_finish.rb 2020-12-07
09:59:34.000000000 +0100
@@ -30,7 +30,6 @@
module Yast
class FirstbootFinishClient < Client
def main
- Yast.import "Pkg"
Yast.import "UI"
textdomain "firstboot"
@@ -42,13 +41,12 @@
Yast.import "Label"
Yast.import "Firstboot"
Yast.import "GetInstArgs"
+ Yast.import "Package"
@display = UI.GetDisplayInfo
- if !Ops.get_boolean(@display, "TextMode", true)
- if !Pkg.IsProvided("yast2-control-center")
- Firstboot.show_y2cc_checkbox = false
- end
+ if !Package.Installed("yast2-control-center")
+ Firstboot.show_y2cc_checkbox = false
end
@space = Ops.get_boolean(@display, "TextMode", true) ? 1 : 3
_______________________________________________
openSUSE Commits mailing list -- [email protected]
To unsubscribe, email [email protected]
List Netiquette: https://en.opensuse.org/openSUSE:Mailing_list_netiquette
List Archives:
https://lists.opensuse.org/archives/list/[email protected]