Hello community, here is the log from the commit of package yast2-tftp-server for openSUSE:Factory checked in at 2018-04-05 15:37:19 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-tftp-server (Old) and /work/SRC/openSUSE:Factory/.yast2-tftp-server.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-tftp-server" Thu Apr 5 15:37:19 2018 rev:32 rq:593779 version:4.0.2 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-tftp-server/yast2-tftp-server.changes 2018-02-14 10:51:11.510612731 +0100 +++ /work/SRC/openSUSE:Factory/.yast2-tftp-server.new/yast2-tftp-server.changes 2018-04-05 15:37:26.399573708 +0200 @@ -1,0 +2,7 @@ +Thu Apr 5 10:10:45 UTC 2018 - [email protected] + +- do not report error when cloning without tftp installed + (bsc#1081688) +- 4.0.2 + +------------------------------------------------------------------- Old: ---- yast2-tftp-server-4.0.1.tar.bz2 New: ---- yast2-tftp-server-4.0.2.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-tftp-server.spec ++++++ --- /var/tmp/diff_new_pack.V8XVDh/_old 2018-04-05 15:37:27.403537286 +0200 +++ /var/tmp/diff_new_pack.V8XVDh/_new 2018-04-05 15:37:27.407537141 +0200 @@ -17,7 +17,7 @@ Name: yast2-tftp-server -Version: 4.0.1 +Version: 4.0.2 Release: 0 BuildRoot: %{_tmppath}/%{name}-%{version}-build ++++++ yast2-tftp-server-4.0.1.tar.bz2 -> yast2-tftp-server-4.0.2.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-tftp-server-4.0.1/package/yast2-tftp-server.changes new/yast2-tftp-server-4.0.2/package/yast2-tftp-server.changes --- old/yast2-tftp-server-4.0.1/package/yast2-tftp-server.changes 2018-02-13 10:44:36.000000000 +0100 +++ new/yast2-tftp-server-4.0.2/package/yast2-tftp-server.changes 2018-04-05 14:21:09.000000000 +0200 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Thu Apr 5 10:10:45 UTC 2018 - [email protected] + +- do not report error when cloning without tftp installed + (bsc#1081688) +- 4.0.2 + +------------------------------------------------------------------- Tue Feb 13 10:06:15 CET 2018 - [email protected] - Merging changed settings with already existing configuration. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-tftp-server-4.0.1/package/yast2-tftp-server.spec new/yast2-tftp-server-4.0.2/package/yast2-tftp-server.spec --- old/yast2-tftp-server-4.0.1/package/yast2-tftp-server.spec 2018-02-13 10:44:36.000000000 +0100 +++ new/yast2-tftp-server-4.0.2/package/yast2-tftp-server.spec 2018-04-05 14:21:09.000000000 +0200 @@ -17,7 +17,7 @@ Name: yast2-tftp-server -Version: 4.0.1 +Version: 4.0.2 Release: 0 BuildRoot: %{_tmppath}/%{name}-%{version}-build diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-tftp-server-4.0.1/src/modules/TftpServer.rb new/yast2-tftp-server-4.0.2/src/modules/TftpServer.rb --- old/yast2-tftp-server-4.0.1/src/modules/TftpServer.rb 2018-02-13 10:44:36.000000000 +0100 +++ new/yast2-tftp-server-4.0.2/src/modules/TftpServer.rb 2018-04-05 14:21:09.000000000 +0200 @@ -29,6 +29,7 @@ def main textdomain "tftp-server" + Yast.import "Package" Yast.import "Progress" Yast.import "Report" Yast.import "SystemdSocket" @@ -88,6 +89,9 @@ # Read all tftp-server settings # @return true on success def Read + # if package is not installed, then read is easy + return true unless Package.Installed(PACKAGE_NAME) + # foreign_servers: # get command names via lsof, filter out systemd and in.tftpd out = Convert.to_map(
