Hello community, here is the log from the commit of package yast2-cluster for openSUSE:Factory checked in at 2020-08-29 20:36:15 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-cluster (Old) and /work/SRC/openSUSE:Factory/.yast2-cluster.new.3399 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-cluster" Sat Aug 29 20:36:15 2020 rev:41 rq:830302 version:4.3.3 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-cluster/yast2-cluster.changes 2020-08-12 13:42:28.357967426 +0200 +++ /work/SRC/openSUSE:Factory/.yast2-cluster.new.3399/yast2-cluster.changes 2020-08-29 20:36:28.101316802 +0200 @@ -1,0 +2,12 @@ +Tue Aug 25 01:18:40 UTC 2020 - nick wang <nw...@suse.com> + +- bsc#1175648, fix UI label switch to turn off csync2 service +- Version 4.3.3 + +------------------------------------------------------------------- +Wed Aug 19 09:51:43 UTC 2020 - Callum Farmer <callumjfarme...@gmail.com> + +- Correct firewall directory for %_libexecdir changes (bsc#1174075) +- Version 4.3.2 + +------------------------------------------------------------------- Old: ---- yast2-cluster-4.3.1.tar.bz2 New: ---- yast2-cluster-4.3.3.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-cluster.spec ++++++ --- /var/tmp/diff_new_pack.rZUQqm/_old 2020-08-29 20:36:30.337317745 +0200 +++ /var/tmp/diff_new_pack.rZUQqm/_new 2020-08-29 20:36:30.341317746 +0200 @@ -1,7 +1,7 @@ # # spec file for package yast2-cluster # -# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2020 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -12,14 +12,14 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # -%define _fwdefdir %{_libexecdir}/firewalld/services +%define _fwdefdir %{_prefix}/lib/firewalld/services Name: yast2-cluster -Version: 4.3.1 +Version: 4.3.3 Release: 0 Summary: Configuration of cluster License: GPL-2.0-only ++++++ yast2-cluster-4.3.1.tar.bz2 -> yast2-cluster-4.3.3.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-cluster-4.3.1/package/yast2-cluster.changes new/yast2-cluster-4.3.3/package/yast2-cluster.changes --- old/yast2-cluster-4.3.1/package/yast2-cluster.changes 2020-08-12 12:07:43.000000000 +0200 +++ new/yast2-cluster-4.3.3/package/yast2-cluster.changes 2020-08-28 17:19:39.000000000 +0200 @@ -1,4 +1,16 @@ ------------------------------------------------------------------- +Tue Aug 25 01:18:40 UTC 2020 - nick wang <nw...@suse.com> + +- bsc#1175648, fix UI label switch to turn off csync2 service +- Version 4.3.3 + +------------------------------------------------------------------- +Wed Aug 19 09:51:43 UTC 2020 - Callum Farmer <callumjfarme...@gmail.com> + +- Correct firewall directory for %_libexecdir changes (bsc#1174075) +- Version 4.3.2 + +------------------------------------------------------------------- Mon Aug 10 17:05:37 CEST 2020 - sch...@suse.de - AutoYaST: Added supplements: autoyast(cluster) into the spec file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-cluster-4.3.1/package/yast2-cluster.spec new/yast2-cluster-4.3.3/package/yast2-cluster.spec --- old/yast2-cluster-4.3.1/package/yast2-cluster.spec 2020-08-12 12:07:43.000000000 +0200 +++ new/yast2-cluster-4.3.3/package/yast2-cluster.spec 2020-08-28 17:19:39.000000000 +0200 @@ -15,10 +15,10 @@ # Please submit bugfixes or comments via https://bugs.opensuse.org/ # -%define _fwdefdir %{_libexecdir}/firewalld/services +%define _fwdefdir %{_prefix}/lib/firewalld/services Name: yast2-cluster -Version: 4.3.1 +Version: 4.3.3 Release: 0 Summary: Configuration of cluster License: GPL-2.0-only diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-cluster-4.3.1/src/include/cluster/dialogs.rb new/yast2-cluster-4.3.3/src/include/cluster/dialogs.rb --- old/yast2-cluster-4.3.1/src/include/cluster/dialogs.rb 2020-08-12 12:07:43.000000000 +0200 +++ new/yast2-cluster-4.3.3/src/include/cluster/dialogs.rb 2020-08-28 17:19:39.000000000 +0200 @@ -1480,10 +1480,11 @@ firewalld_cluster = firewalld.find_service("cluster") tcp_ports = firewalld_cluster.tcp_ports rescue Y2Firewall::Firewalld::Service::NotFound - tcp_ports = [] + y2debug("Firewalld service not found.") + return 3 end - tcp_ports.include?(@csync2_port) ? 2 : 3 + tcp_ports.include?(@csync2_port) ? 3 : 2 end def csync2_turn_off