Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package crmsh for openSUSE:Factory checked in at 2021-06-11 00:18:42 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/crmsh (Old) and /work/SRC/openSUSE:Factory/.crmsh.new.32437 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "crmsh" Fri Jun 11 00:18:42 2021 rev:212 rq:898920 version:4.3.0+20210610.c7eb914f Changes: -------- --- /work/SRC/openSUSE:Factory/crmsh/crmsh.changes 2021-06-07 22:44:30.092586558 +0200 +++ /work/SRC/openSUSE:Factory/.crmsh.new.32437/crmsh.changes 2021-06-11 00:19:16.517379629 +0200 @@ -1,0 +2,7 @@ +Thu Jun 10 05:24:46 UTC 2021 - xli...@suse.com + +- Update to version 4.3.0+20210610.c7eb914f: + * Dev: utils: allow configure link-local ipv6 address + * Dev: bootstrap: return when not specify ocfs2 device on interactive mode + +------------------------------------------------------------------- Old: ---- crmsh-4.3.0+20210607.41a0731e.tar.bz2 New: ---- crmsh-4.3.0+20210610.c7eb914f.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ crmsh.spec ++++++ --- /var/tmp/diff_new_pack.bDyiSH/_old 2021-06-11 00:19:17.097380637 +0200 +++ /var/tmp/diff_new_pack.bDyiSH/_new 2021-06-11 00:19:17.097380637 +0200 @@ -36,7 +36,7 @@ Summary: High Availability cluster command-line interface License: GPL-2.0-or-later Group: %{pkg_group} -Version: 4.3.0+20210607.41a0731e +Version: 4.3.0+20210610.c7eb914f Release: 0 URL: http://crmsh.github.io Source0: %{name}-%{version}.tar.bz2 ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.bDyiSH/_old 2021-06-11 00:19:17.129380692 +0200 +++ /var/tmp/diff_new_pack.bDyiSH/_new 2021-06-11 00:19:17.129380692 +0200 @@ -9,6 +9,6 @@ </service> <service name="tar_scm"> <param name="url">https://github.com/ClusterLabs/crmsh.git</param> - <param name="changesrevision">41a0731e5cd4a6cb2bd7b3309db8e5633a4296c2</param> + <param name="changesrevision">c7eb914fff0e5eb5a9077a10534f7f9488c40422</param> </service> </servicedata> \ No newline at end of file ++++++ crmsh-4.3.0+20210607.41a0731e.tar.bz2 -> crmsh-4.3.0+20210610.c7eb914f.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/crmsh-4.3.0+20210607.41a0731e/crmsh/bootstrap.py new/crmsh-4.3.0+20210610.c7eb914f/crmsh/bootstrap.py --- old/crmsh-4.3.0+20210607.41a0731e/crmsh/bootstrap.py 2021-06-07 03:40:11.000000000 +0200 +++ new/crmsh-4.3.0+20210610.c7eb914f/crmsh/bootstrap.py 2021-06-10 07:11:32.000000000 +0200 @@ -1505,7 +1505,7 @@ """ OCFS2 configure process """ - if _context.yes_to_all and not _context.ocfs2_devices: + if not _context.ocfs2_devices: return ocfs2_manager = ocfs2.OCFS2Manager(_context) ocfs2_manager.init_ocfs2() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/crmsh-4.3.0+20210607.41a0731e/crmsh/utils.py new/crmsh-4.3.0+20210610.c7eb914f/crmsh/utils.py --- old/crmsh-4.3.0+20210607.41a0731e/crmsh/utils.py 2021-06-07 03:40:11.000000000 +0200 +++ new/crmsh-4.3.0+20210610.c7eb914f/crmsh/utils.py 2021-06-10 07:11:32.000000000 +0200 @@ -2343,9 +2343,8 @@ # maybe from tun interface if not '/' in ip_with_mask: continue - #TODO change this condition when corosync support link-local address interface_inst = Interface(ip_with_mask) - if interface_inst.is_loopback or interface_inst.is_link_local: + if interface_inst.is_loopback: continue # one nic might configured multi IP addresses if nic not in self._nic_info_dict: