Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package yast2-network for openSUSE:Factory checked in at 2022-03-15 19:03:41 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-network (Old) and /work/SRC/openSUSE:Factory/.yast2-network.new.25692 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-network" Tue Mar 15 19:03:41 2022 rev:478 rq:961554 version:4.4.45 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes 2022-03-11 21:41:06.074063007 +0100 +++ /work/SRC/openSUSE:Factory/.yast2-network.new.25692/yast2-network.changes 2022-03-15 19:03:42.340898716 +0100 @@ -1,0 +2,7 @@ +Fri Mar 11 12:36:29 UTC 2022 - Imobach Gonzalez Sosa <igonzalezs...@suse.com> + +- Display the network configuration in the AutoYaST user interface + (see bsc#1197019). +- 4.4.45 + +------------------------------------------------------------------- Old: ---- yast2-network-4.4.44.tar.bz2 New: ---- yast2-network-4.4.45.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-network.spec ++++++ --- /var/tmp/diff_new_pack.nj3z8C/_old 2022-03-15 19:03:43.024899180 +0100 +++ /var/tmp/diff_new_pack.nj3z8C/_new 2022-03-15 19:03:43.032899185 +0100 @@ -17,7 +17,7 @@ Name: yast2-network -Version: 4.4.44 +Version: 4.4.45 Release: 0 Summary: YaST2 - Network Configuration License: GPL-2.0-only ++++++ yast2-network-4.4.44.tar.bz2 -> yast2-network-4.4.45.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-network-4.4.44/package/yast2-network.changes new/yast2-network-4.4.45/package/yast2-network.changes --- old/yast2-network-4.4.44/package/yast2-network.changes 2022-03-09 15:13:57.000000000 +0100 +++ new/yast2-network-4.4.45/package/yast2-network.changes 2022-03-14 07:26:53.000000000 +0100 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Fri Mar 11 12:36:29 UTC 2022 - Imobach Gonzalez Sosa <igonzalezs...@suse.com> + +- Display the network configuration in the AutoYaST user interface + (see bsc#1197019). +- 4.4.45 + +------------------------------------------------------------------- Wed Mar 9 10:10:37 UTC 2022 - Knut Anderssen <kanders...@suse.com> - Write NetworkManager s390 options to the ethernet section instead diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-network-4.4.44/package/yast2-network.spec new/yast2-network-4.4.45/package/yast2-network.spec --- old/yast2-network-4.4.44/package/yast2-network.spec 2022-03-09 15:13:57.000000000 +0100 +++ new/yast2-network-4.4.45/package/yast2-network.spec 2022-03-14 07:26:53.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2-network -Version: 4.4.44 +Version: 4.4.45 Release: 0 Summary: YaST2 - Network Configuration License: GPL-2.0-only diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-network-4.4.44/src/modules/Lan.rb new/yast2-network-4.4.45/src/modules/Lan.rb --- old/yast2-network-4.4.44/src/modules/Lan.rb 2022-03-09 15:13:57.000000000 +0100 +++ new/yast2-network-4.4.45/src/modules/Lan.rb 2022-03-14 07:26:53.000000000 +0100 @@ -45,6 +45,9 @@ require "shellwords" +Yast.import "HTML" +Yast.import "Summary" + module Yast class LanClass < Module include ::UI::TextHelpers @@ -629,9 +632,11 @@ # "proposal": for proposal also with resolver an routing summary # @return summary of the current configuration def Summary(mode) + return no_config_message if yast_config.nil? + case mode when "summary", "proposal" - Y2Network::Presenters::Summary.text_for(yast_config, mode) + Y2Network::Presenters::Summary.text_for(yast_config, "proposal") else Y2Network::Presenters::Summary.text_for(yast_config, "interfaces") end @@ -922,6 +927,10 @@ log.debug("link_status #{hash.inspect}") end end + + def no_config_message + HTML.Heading(_("Network Configuration")) + Summary.NotConfigured + end end Lan = LanClass.new