Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package yast2-country for openSUSE:Factory checked in at 2021-09-11 22:24:16 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-country (Old) and /work/SRC/openSUSE:Factory/.yast2-country.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-country" Sat Sep 11 22:24:16 2021 rev:226 rq:917227 version:4.4.6 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-country/yast2-country.changes 2021-08-24 10:54:50.904322890 +0200 +++ /work/SRC/openSUSE:Factory/.yast2-country.new.1899/yast2-country.changes 2021-09-11 22:24:26.479381334 +0200 @@ -1,0 +2,7 @@ +Mon Sep 6 13:48:04 UTC 2021 - Knut Anderssen <kanders...@suse.com> + +- Use only one server when proposing the default NTP servers to + be used (bsc#1188980). +- 4.4.6 + +------------------------------------------------------------------- Old: ---- yast2-country-4.4.5.tar.bz2 New: ---- yast2-country-4.4.6.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-country.spec ++++++ --- /var/tmp/diff_new_pack.Sc33m8/_old 2021-09-11 22:24:26.915381764 +0200 +++ /var/tmp/diff_new_pack.Sc33m8/_new 2021-09-11 22:24:26.919381768 +0200 @@ -17,7 +17,7 @@ Name: yast2-country -Version: 4.4.5 +Version: 4.4.6 Release: 0 Summary: YaST2 - Country Settings (Language, Keyboard, and Timezone) License: GPL-2.0-only ++++++ yast2-country-4.4.5.tar.bz2 -> yast2-country-4.4.6.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-country-4.4.5/package/yast2-country.changes new/yast2-country-4.4.6/package/yast2-country.changes --- old/yast2-country-4.4.5/package/yast2-country.changes 2021-08-19 10:02:29.000000000 +0200 +++ new/yast2-country-4.4.6/package/yast2-country.changes 2021-09-07 10:57:41.000000000 +0200 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Mon Sep 6 13:48:04 UTC 2021 - Knut Anderssen <kanders...@suse.com> + +- Use only one server when proposing the default NTP servers to + be used (bsc#1188980). +- 4.4.6 + +------------------------------------------------------------------- Wed Aug 18 10:23:48 UTC 2021 - Imobach Gonzalez Sosa <igonzalezs...@suse.com> - Move the keyboards database to lib/ to make the module compatible diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-country-4.4.5/package/yast2-country.spec new/yast2-country-4.4.6/package/yast2-country.spec --- old/yast2-country-4.4.5/package/yast2-country.spec 2021-08-19 10:02:29.000000000 +0200 +++ new/yast2-country-4.4.6/package/yast2-country.spec 2021-09-07 10:57:41.000000000 +0200 @@ -16,7 +16,7 @@ # Name: yast2-country -Version: 4.4.5 +Version: 4.4.6 Release: 0 Summary: YaST2 - Country Settings (Language, Keyboard, and Timezone) License: GPL-2.0-only diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-country-4.4.5/timezone/src/include/timezone/dialogs.rb new/yast2-country-4.4.6/timezone/src/include/timezone/dialogs.rb --- old/yast2-country-4.4.5/timezone/src/include/timezone/dialogs.rb 2021-08-19 10:02:29.000000000 +0200 +++ new/yast2-country-4.4.6/timezone/src/include/timezone/dialogs.rb 2021-09-07 10:57:41.000000000 +0200 @@ -574,11 +574,10 @@ # configure NTP client # to prevent misusage of ntp.org we need to distinguish opensuse and SLE usage require "y2network/ntp_server" - servers = Y2Network::NtpServer.default_servers.map(&:hostname) - @ntp_server = servers.sample + @ntp_server = Y2Network::NtpServer.default_servers.map(&:hostname).sample # Dot not select a dhcp ntp server by default but add it to the offered - # list (fate#323454) - servers = ntp_call("dhcp_ntp_servers", {}).concat(servers).uniq + # list (fate#323454). Add only one server as it is added as a pool (bsc#1188980) + servers = ntp_call("dhcp_ntp_servers", {}).concat([@ntp_server].compact).uniq argmap = { "server" => @ntp_server, # FIXME ntp-client_proposal doesn't understand 'servers' yet