Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package yast2-auth-client for openSUSE:Factory checked in at 2023-03-08 14:51:55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-auth-client (Old) and /work/SRC/openSUSE:Factory/.yast2-auth-client.new.31432 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-auth-client" Wed Mar 8 14:51:55 2023 rev:49 rq:1069894 version:4.6.1 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-auth-client/yast2-auth-client.changes 2023-03-04 22:42:48.655635361 +0100 +++ /work/SRC/openSUSE:Factory/.yast2-auth-client.new.31432/yast2-auth-client.changes 2023-03-08 14:51:56.670470833 +0100 @@ -1,0 +2,7 @@ +Mon Mar 6 16:47:05 UTC 2023 - Martin Vidner <mvid...@suse.com> + +- Stop using File.exists? which no longer works in Ruby 3.2 + (bsc#1206419) +- 4.6.1 + +------------------------------------------------------------------- Old: ---- yast2-auth-client-4.6.0.tar.bz2 New: ---- yast2-auth-client-4.6.1.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-auth-client.spec ++++++ --- /var/tmp/diff_new_pack.C93iv1/_old 2023-03-08 14:51:57.318474362 +0100 +++ /var/tmp/diff_new_pack.C93iv1/_new 2023-03-08 14:51:57.322474383 +0100 @@ -17,7 +17,7 @@ Name: yast2-auth-client -Version: 4.6.0 +Version: 4.6.1 Release: 0 URL: https://github.com/yast/yast-auth-client Summary: YaST2 - Centralised System Authentication Configuration ++++++ yast2-auth-client-4.6.0.tar.bz2 -> yast2-auth-client-4.6.1.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-auth-client-4.6.0/package/yast2-auth-client.changes new/yast2-auth-client-4.6.1/package/yast2-auth-client.changes --- old/yast2-auth-client-4.6.0/package/yast2-auth-client.changes 2023-03-03 15:49:09.000000000 +0100 +++ new/yast2-auth-client-4.6.1/package/yast2-auth-client.changes 2023-03-07 11:21:22.000000000 +0100 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Mon Mar 6 16:47:05 UTC 2023 - Martin Vidner <mvid...@suse.com> + +- Stop using File.exists? which no longer works in Ruby 3.2 + (bsc#1206419) +- 4.6.1 + +------------------------------------------------------------------- Fri Mar 03 14:44:07 UTC 2023 - Ladislav Slezák <lsle...@suse.cz> - Bump version to 4.6.0 (bsc#1208913) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-auth-client-4.6.0/package/yast2-auth-client.spec new/yast2-auth-client-4.6.1/package/yast2-auth-client.spec --- old/yast2-auth-client-4.6.0/package/yast2-auth-client.spec 2023-03-03 15:49:09.000000000 +0100 +++ new/yast2-auth-client-4.6.1/package/yast2-auth-client.spec 2023-03-07 11:21:22.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2-auth-client -Version: 4.6.0 +Version: 4.6.1 Release: 0 Url: https://github.com/yast/yast-auth-client Summary: YaST2 - Centralised System Authentication Configuration diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-auth-client-4.6.0/src/lib/auth/authconf.rb new/yast2-auth-client-4.6.1/src/lib/auth/authconf.rb --- old/yast2-auth-client-4.6.0/src/lib/auth/authconf.rb 2023-03-03 15:49:09.000000000 +0100 +++ new/yast2-auth-client-4.6.1/src/lib/auth/authconf.rb 2023-03-07 11:21:22.000000000 +0100 @@ -409,7 +409,7 @@ end end # Write SSSD config file and correct its permission and ownerships - if File.exists?('/etc/sssd') + if File.exist?('/etc/sssd') sssd_conf = File.new('/etc/sssd/sssd.conf', 'w') sssd_conf.chmod(0600) sssd_conf.chown(0, 0)