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-08-31 19:55:48
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/crmsh (Old)
 and      /work/SRC/openSUSE:Factory/.crmsh.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "crmsh"

Tue Aug 31 19:55:48 2021 rev:220 rq:915255 version:4.3.1+20210827.1ae49236

Changes:
--------
--- /work/SRC/openSUSE:Factory/crmsh/crmsh.changes      2021-08-11 
11:49:35.313575358 +0200
+++ /work/SRC/openSUSE:Factory/.crmsh.new.1899/crmsh.changes    2021-08-31 
19:56:50.602050942 +0200
@@ -1,0 +2,12 @@
+Fri Aug 27 07:03:55 UTC 2021 - [email protected]
+
+- Update to version 4.3.1+20210827.1ae49236:
+  * Fix: hb_report: Using python way to collect ra trace files (bsc#1189641)
+
+-------------------------------------------------------------------
+Fri Aug 27 03:36:50 UTC 2021 - [email protected]
+
+- Update to version 4.3.1+20210827.4e4e83b3:
+  * Fix: bootstrap: adjust host list for parallax to get and copy known_hosts 
file(bsc#1188971)
+
+-------------------------------------------------------------------

Old:
----
  crmsh-4.3.1+20210811.4045e09d.tar.bz2

New:
----
  crmsh-4.3.1+20210827.1ae49236.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ crmsh.spec ++++++
--- /var/tmp/diff_new_pack.s9AHha/_old  2021-08-31 19:56:51.114051651 +0200
+++ /var/tmp/diff_new_pack.s9AHha/_new  2021-08-31 19:56:51.118051657 +0200
@@ -36,7 +36,7 @@
 Summary:        High Availability cluster command-line interface
 License:        GPL-2.0-or-later
 Group:          %{pkg_group}
-Version:        4.3.1+20210811.4045e09d
+Version:        4.3.1+20210827.1ae49236
 Release:        0
 URL:            http://crmsh.github.io
 Source0:        %{name}-%{version}.tar.bz2

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.s9AHha/_old  2021-08-31 19:56:51.162051718 +0200
+++ /var/tmp/diff_new_pack.s9AHha/_new  2021-08-31 19:56:51.162051718 +0200
@@ -9,6 +9,6 @@
 </service>
 <service name="tar_scm">
   <param name="url">https://github.com/ClusterLabs/crmsh.git</param>
-  <param 
name="changesrevision">4045e09d6208e04923342b8ede1520aca88eda7d</param>
+  <param 
name="changesrevision">1ae49236c4cc28964968e97c448200614a5b0904</param>
 </service>
 </servicedata>
\ No newline at end of file

++++++ crmsh-4.3.1+20210811.4045e09d.tar.bz2 -> 
crmsh-4.3.1+20210827.1ae49236.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/crmsh-4.3.1+20210811.4045e09d/crmsh/bootstrap.py 
new/crmsh-4.3.1+20210827.1ae49236/crmsh/bootstrap.py
--- old/crmsh-4.3.1+20210811.4045e09d/crmsh/bootstrap.py        2021-08-11 
09:00:07.000000000 +0200
+++ new/crmsh-4.3.1+20210827.1ae49236/crmsh/bootstrap.py        2021-08-27 
08:52:02.000000000 +0200
@@ -1623,10 +1623,8 @@
 def join_ssh_merge(_cluster_node):
     status("Merging known_hosts")
 
-    me = utils.this_node()
     hosts = [m.group(1)
-             for m in re.finditer(r"^\s*host\s*([^ ;]+)\s*;", 
open(CSYNC2_CFG).read(), re.M)
-             if m.group(1) != me]
+             for m in re.finditer(r"^\s*host\s*([^ ;]+)\s*;", 
open(CSYNC2_CFG).read(), re.M)]
     if not hosts:
         hosts = [_cluster_node]
         warn("Unable to extract host list from %s" % (CSYNC2_CFG))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/crmsh-4.3.1+20210811.4045e09d/hb_report/utillib.py 
new/crmsh-4.3.1+20210827.1ae49236/hb_report/utillib.py
--- old/crmsh-4.3.1+20210811.4045e09d/hb_report/utillib.py      2021-08-11 
09:00:07.000000000 +0200
+++ new/crmsh-4.3.1+20210827.1ae49236/hb_report/utillib.py      2021-08-27 
08:52:02.000000000 +0200
@@ -967,11 +967,9 @@
     log_debug("looking for RA trace files in %s" % trace_dir)
     flist = []
     for f in find_files(trace_dir, constants.FROM_TIME, constants.TO_TIME):
-        flist.append(os.path.join("trace_ra", '/'.join(f.split('/')[-2:])))
-    if flist:
-        cmd = "tar -cf - -C `dirname %s` %s | tar -xf - -C %s" % (trace_dir, ' 
'.join(flist), constants.WORKDIR)
-        crmutils.ext_cmd(cmd)
-        log_debug("found %d RA trace files in %s" % (len(flist), trace_dir))
+        dest_dir = os.path.join(constants.WORKDIR, 
'/'.join(f.split('/')[-3:-1]))
+        crmutils.mkdirp(dest_dir)
+        shutil.copy2(f, dest_dir)
 
 
 def get_pe_inputs():

Reply via email to