Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package yast2-cluster for openSUSE:Factory checked in at 2025-02-11 21:30:35 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-cluster (Old) and /work/SRC/openSUSE:Factory/.yast2-cluster.new.19470 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-cluster" Tue Feb 11 21:30:35 2025 rev:53 rq:1245088 version:5.0.1 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-cluster/yast2-cluster.changes 2023-10-19 22:53:47.648521948 +0200 +++ /work/SRC/openSUSE:Factory/.yast2-cluster.new.19470/yast2-cluster.changes 2025-02-11 21:30:58.521976643 +0100 @@ -1,0 +2,6 @@ +Tue Feb 11 13:05:52 UTC 2025 - xin liang <xli...@suse.com> + +- Update HA related ports (bsc#1219773, bsc#1236903) +- 5.0.1 + +------------------------------------------------------------------- Old: ---- yast2-cluster-5.0.0.tar.bz2 New: ---- yast2-cluster-5.0.1.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-cluster.spec ++++++ --- /var/tmp/diff_new_pack.xd1vaR/_old 2025-02-11 21:30:59.354010964 +0100 +++ /var/tmp/diff_new_pack.xd1vaR/_new 2025-02-11 21:30:59.358011129 +0100 @@ -1,7 +1,7 @@ # # spec file for package yast2-cluster # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2025 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -19,7 +19,7 @@ %define _fwdefdir %{_prefix}/lib/firewalld/services Name: yast2-cluster -Version: 5.0.0 +Version: 5.0.1 Release: 0 Summary: Configuration of cluster License: GPL-2.0-only ++++++ cluster.firewalld.xml ++++++ --- /var/tmp/diff_new_pack.xd1vaR/_old 2025-02-11 21:30:59.390012449 +0100 +++ /var/tmp/diff_new_pack.xd1vaR/_new 2025-02-11 21:30:59.394012614 +0100 @@ -1,18 +1,17 @@ <?xml version="1.0" encoding="utf-8"?> <service> <short>SUSE YaST Cluster</short> - <description>This allows you to open various ports related to SUSE YaST Cluster module. Ports are opened for pacemaker-remote, booth, mgmtd, hawk, dlm, csync2 and corosync-qnetd.</description> - <port protocol="tcp" port="2224"/> - <port protocol="tcp" port="3121"/> - <port protocol="tcp" port="5403"/> - <port protocol="udp" port="5404"/> - <port protocol="udp" port="5405"/> - <port protocol="tcp" port="5560"/> - <port protocol="tcp" port="7630"/> - <port protocol="tcp" port="9929"/> + <description>This allows you to open various ports related to SUSE YaST Cluster module. Ports are opened for pacemaker-remote, booth, hawk, dlm, csync2 and corosync-qnetd.</description> + <port protocol="tcp" port="3121"/> <!-- pacemaker-remote --> + <port protocol="tcp" port="5403"/> <!-- corosync-qnetd --> + <port protocol="udp" port="5404"/> <!-- corosync --> + <port protocol="udp" port="5405"/> <!-- corosync --> + <port protocol="tcp" port="7630"/> <!-- hawk --> + <port protocol="tcp" port="9929"/> <!-- booth --> <port protocol="udp" port="9929"/> - <port protocol="tcp" port="21064"/> - <port protocol="tcp" port="30865"/> + <port protocol="tcp" port="21064"/> <!-- dlm --> + <port protocol="sctp" port="21064"/> + <port protocol="tcp" port="30865"/> <!-- csync2 --> </service> ++++++ yast2-cluster-5.0.0.tar.bz2 -> yast2-cluster-5.0.1.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-cluster-5.0.0/.github/workflows/ci.yml new/yast2-cluster-5.0.1/.github/workflows/ci.yml --- old/yast2-cluster-5.0.0/.github/workflows/ci.yml 2023-10-18 23:14:38.000000000 +0200 +++ new/yast2-cluster-5.0.1/.github/workflows/ci.yml 2025-02-11 13:26:21.000000000 +0100 @@ -1,9 +1,8 @@ - # See https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions name: CI -on: [push, pull_request] +on: [ push, pull_request ] jobs: # FIXME: no unit tests here :-( @@ -46,23 +45,25 @@ # run: rake check:rubocop Package: + # skip in master, but run in forks + if: github.ref_name != 'master' || github.repository_owner != 'yast' + runs-on: ubuntu-latest strategy: fail-fast: false matrix: - distro: [ "tumbleweed", "leap_latest" ] + distro: [ "tumbleweed" ] container: image: registry.opensuse.org/yast/head/containers_${{matrix.distro}}/yast-ruby steps: + - name: Git Checkout + uses: actions/checkout@v2 - - name: Git Checkout - uses: actions/checkout@v2 - - - name: Package Build - run: yast-ci-ruby -o package + - name: Package Build + run: yast-ci-ruby -o package Yardoc: runs-on: ubuntu-latest @@ -70,18 +71,17 @@ strategy: fail-fast: false matrix: - distro: [ "leap_latest" ] + distro: [ "tumbleweed" ] container: image: registry.opensuse.org/yast/head/containers_${{matrix.distro}}/yast-ruby steps: + - name: Git Checkout + uses: actions/checkout@v2 - - name: Git Checkout - uses: actions/checkout@v2 - - - name: Yardoc - run: rake check:doc + - name: Yardoc + run: rake check:doc # downloading the Docker image takes some time so bundling several fast # checks into one job avoids that overhead @@ -91,16 +91,14 @@ strategy: fail-fast: false matrix: - distro: [ "leap_latest" ] + distro: [ "tumbleweed" ] container: image: registry.opensuse.org/yast/head/containers_${{matrix.distro}}/yast-ruby steps: + - name: Git Checkout + uses: actions/checkout@v2 - - name: Git Checkout - uses: actions/checkout@v2 - - - name: POT Check - run: rake check:pot - + - name: POT Check + run: rake check:pot diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-cluster-5.0.0/.github/workflows/submit.yml new/yast2-cluster-5.0.1/.github/workflows/submit.yml --- old/yast2-cluster-5.0.0/.github/workflows/submit.yml 1970-01-01 01:00:00.000000000 +0100 +++ new/yast2-cluster-5.0.1/.github/workflows/submit.yml 2025-02-11 13:26:21.000000000 +0100 @@ -0,0 +1,29 @@ +# See https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions + +name: OBS + +on: + # only when committing to master + push: + branches: master + + # allow running manually from GitHub Web + workflow_dispatch: + +jobs: + submit: + # do not run in forks + if: github.repository_owner == 'yast' + + runs-on: ubuntu-latest + + # the default timeout is 6 hours, do not wait for that long if osc gets stucked + timeout-minutes: 30 + + steps: + - name: Submit the package + # see https://github.com/yast/actions/blob/master/submit/action.yml + uses: yast/actions/submit@master + with: + obs_user: ${{ secrets.OBS_USER }} + obs_password: ${{ secrets.OBS_PASSWORD }} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-cluster-5.0.0/README.md new/yast2-cluster-5.0.1/README.md --- old/yast2-cluster-5.0.0/README.md 2023-10-18 23:14:38.000000000 +0200 +++ new/yast2-cluster-5.0.1/README.md 2025-02-11 13:26:21.000000000 +0100 @@ -2,5 +2,4 @@ []( https://github.com/yast/yast-cluster/actions?query=branch%3Amaster) -[]( -https://ci.opensuse.org/view/Yast/job/yast-yast-cluster-master/) \ No newline at end of file +[](https://github.com/yast/yast-cluster/actions/workflows/submit.yml) \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-cluster-5.0.0/package/cluster.firewalld.xml new/yast2-cluster-5.0.1/package/cluster.firewalld.xml --- old/yast2-cluster-5.0.0/package/cluster.firewalld.xml 2023-10-18 23:14:38.000000000 +0200 +++ new/yast2-cluster-5.0.1/package/cluster.firewalld.xml 2025-02-11 13:26:21.000000000 +0100 @@ -1,17 +1,16 @@ <?xml version="1.0" encoding="utf-8"?> <service> <short>SUSE YaST Cluster</short> - <description>This allows you to open various ports related to SUSE YaST Cluster module. Ports are opened for pacemaker-remote, booth, mgmtd, hawk, dlm, csync2 and corosync-qnetd.</description> - <port protocol="tcp" port="2224"/> - <port protocol="tcp" port="3121"/> - <port protocol="tcp" port="5403"/> - <port protocol="udp" port="5404"/> - <port protocol="udp" port="5405"/> - <port protocol="tcp" port="5560"/> - <port protocol="tcp" port="7630"/> - <port protocol="tcp" port="9929"/> + <description>This allows you to open various ports related to SUSE YaST Cluster module. Ports are opened for pacemaker-remote, booth, hawk, dlm, csync2 and corosync-qnetd.</description> + <port protocol="tcp" port="3121"/> <!-- pacemaker-remote --> + <port protocol="tcp" port="5403"/> <!-- corosync-qnetd --> + <port protocol="udp" port="5404"/> <!-- corosync --> + <port protocol="udp" port="5405"/> <!-- corosync --> + <port protocol="tcp" port="7630"/> <!-- hawk --> + <port protocol="tcp" port="9929"/> <!-- booth --> <port protocol="udp" port="9929"/> - <port protocol="tcp" port="21064"/> - <port protocol="tcp" port="30865"/> + <port protocol="tcp" port="21064"/> <!-- dlm --> + <port protocol="sctp" port="21064"/> + <port protocol="tcp" port="30865"/> <!-- csync2 --> </service> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-cluster-5.0.0/package/yast2-cluster.changes new/yast2-cluster-5.0.1/package/yast2-cluster.changes --- old/yast2-cluster-5.0.0/package/yast2-cluster.changes 2023-10-18 23:14:38.000000000 +0200 +++ new/yast2-cluster-5.0.1/package/yast2-cluster.changes 2025-02-11 13:26:21.000000000 +0100 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Tue Feb 11 13:05:52 UTC 2025 - xin liang <xli...@suse.com> + +- Update HA related ports (bsc#1219773, bsc#1236903) +- 5.0.1 + +------------------------------------------------------------------- Wed Aug 30 20:16:10 UTC 2023 - Josef Reidinger <jreidin...@suse.cz> - 5.0.0 (bsc#1185510) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-cluster-5.0.0/package/yast2-cluster.spec new/yast2-cluster-5.0.1/package/yast2-cluster.spec --- old/yast2-cluster-5.0.0/package/yast2-cluster.spec 2023-10-18 23:14:38.000000000 +0200 +++ new/yast2-cluster-5.0.1/package/yast2-cluster.spec 2025-02-11 13:26:21.000000000 +0100 @@ -18,7 +18,7 @@ %define _fwdefdir %{_prefix}/lib/firewalld/services Name: yast2-cluster -Version: 5.0.0 +Version: 5.0.1 Release: 0 Summary: Configuration of cluster License: GPL-2.0-only diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-cluster-5.0.0/src/modules/Cluster.rb new/yast2-cluster-5.0.1/src/modules/Cluster.rb --- old/yast2-cluster-5.0.0/src/modules/Cluster.rb 2023-10-18 23:14:38.000000000 +0200 +++ new/yast2-cluster-5.0.1/src/modules/Cluster.rb 2025-02-11 13:26:21.000000000 +0100 @@ -694,11 +694,10 @@ udp_ports << @mcastport2 if @enable2 && @mcastport2 != "" # 30865 for csync2 - # 5560 for mgmtd # 7630 for hawk or hawk2 # 21064 for dlm # 5403 for corosync qdevice(default) - tcp_ports = ["30865", "5560", "21064", "7630"] + tcp_ports = ["30865", "21064", "7630"] tcp_ports << @qdevice_port if @corosync_qdevice begin