Hello community, here is the log from the commit of package yast2-nfs-server for openSUSE:Factory checked in at 2020-01-20 22:49:16 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-nfs-server (Old) and /work/SRC/openSUSE:Factory/.yast2-nfs-server.new.26092 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-nfs-server" Mon Jan 20 22:49:16 2020 rev:58 rq:765251 version:4.2.3 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-nfs-server/yast2-nfs-server.changes 2019-11-20 10:25:26.502540813 +0100 +++ /work/SRC/openSUSE:Factory/.yast2-nfs-server.new.26092/yast2-nfs-server.changes 2020-01-20 22:49:30.107206344 +0100 @@ -1,0 +2,6 @@ +Wed Jan 15 16:28:52 UTC 2020 - Christopher Hofmann <c...@suse.com> + +- Fixed outdated rpc-svcgssd service name (bsc#972488) +- 4.2.3 + +------------------------------------------------------------------- Old: ---- yast2-nfs-server-4.2.2.tar.bz2 New: ---- yast2-nfs-server-4.2.3.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-nfs-server.spec ++++++ --- /var/tmp/diff_new_pack.IfV8tH/_old 2020-01-20 22:49:31.863207019 +0100 +++ /var/tmp/diff_new_pack.IfV8tH/_new 2020-01-20 22:49:31.903207035 +0100 @@ -1,7 +1,7 @@ # # spec file for package yast2-nfs-server # -# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -20,7 +20,7 @@ Summary: YaST2 - NFS Server Configuration License: GPL-2.0-or-later Group: System/YaST -Version: 4.2.2 +Version: 4.2.3 Release: 0 URL: https://github.com/yast/yast-nfs-server ++++++ yast2-nfs-server-4.2.2.tar.bz2 -> yast2-nfs-server-4.2.3.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-nfs-server-4.2.2/package/yast2-nfs-server.changes new/yast2-nfs-server-4.2.3/package/yast2-nfs-server.changes --- old/yast2-nfs-server-4.2.2/package/yast2-nfs-server.changes 2019-10-31 14:17:15.000000000 +0100 +++ new/yast2-nfs-server-4.2.3/package/yast2-nfs-server.changes 2020-01-17 13:48:20.000000000 +0100 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Wed Jan 15 16:28:52 UTC 2020 - Christopher Hofmann <c...@suse.com> + +- Fixed outdated rpc-svcgssd service name (bsc#972488) +- 4.2.3 + +------------------------------------------------------------------- Fri Oct 25 11:38:41 UTC 2019 - Knut Anderssen <kanders...@suse.com> - Do not use Builtins.regexpmatch when checking the options as the diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-nfs-server-4.2.2/package/yast2-nfs-server.spec new/yast2-nfs-server-4.2.3/package/yast2-nfs-server.spec --- old/yast2-nfs-server-4.2.2/package/yast2-nfs-server.spec 2019-10-31 14:17:15.000000000 +0100 +++ new/yast2-nfs-server-4.2.3/package/yast2-nfs-server.spec 2020-01-17 13:48:20.000000000 +0100 @@ -18,7 +18,7 @@ Name: yast2-nfs-server Summary: YaST2 - NFS Server Configuration -Version: 4.2.2 +Version: 4.2.3 Release: 0 URL: https://github.com/yast/yast-nfs-server Group: System/YaST diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-nfs-server-4.2.2/src/modules/NfsServer.rb new/yast2-nfs-server-4.2.3/src/modules/NfsServer.rb --- old/yast2-nfs-server-4.2.2/src/modules/NfsServer.rb 2019-10-31 14:17:15.000000000 +0100 +++ new/yast2-nfs-server-4.2.3/src/modules/NfsServer.rb 2020-01-17 13:48:20.000000000 +0100 @@ -20,7 +20,8 @@ module Yast class NfsServerClass < Module SERVICE = "nfs-server".freeze - + GSSERVICE = "rpc-svcgssd".freeze + def main textdomain "nfs_server" @@ -277,9 +278,9 @@ end if @nfs_security - if !Service.active?("svcgssd") - unless Service.Start("svcgssd") - # FIXME svcgssd is gone! (only nfsserver is left) + if !Service.active?(GSSERVICE) + unless Service.Start(GSSERVICE) + # FIXME #{GSSERVICE} is gone! (only nfsserver is left) Report.Error( _( "Unable to start svcgssd. Ensure your kerberos and gssapi (nfs-utils) setup is correct." @@ -288,7 +289,7 @@ ok = false end else - unless Service.Restart("svcgssd") + unless Service.Restart(GSSERVICE) Report.Error( _("Unable to restart 'svcgssd' service.") ) @@ -296,8 +297,8 @@ end end else - if Service.active?("svcgssd") - unless Service.Stop("svcgssd") + if Service.active?(GSSERVICE) + unless Service.Stop(GSSERVICE) Report.Error(_("'svcgssd' is running. Unable to stop it.")) ok = false end