Hello community,
here is the log from the commit of package python-azure-agent for
openSUSE:Factory checked in at 2018-01-10 23:38:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-azure-agent (Old)
and /work/SRC/openSUSE:Factory/.python-azure-agent.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-azure-agent"
Wed Jan 10 23:38:41 2018 rev:6 rq:563322 version:2.2.18
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-azure-agent/python-azure-agent.changes
2017-10-20 14:47:37.375326718 +0200
+++
/work/SRC/openSUSE:Factory/.python-azure-agent.new/python-azure-agent.changes
2018-01-10 23:38:43.186024952 +0100
@@ -1,0 +2,6 @@
+Fri Jan 5 19:46:36 UTC 2018 - [email protected]
+
+- Fix RDMA driver package version install issue (bsc#1074865)
+ + Added paa_rdma_install_proper_driver.patch
+
+-------------------------------------------------------------------
New:
----
paa_rdma_install_proper_driver.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-azure-agent.spec ++++++
--- /var/tmp/diff_new_pack.XhPS7C/_old 2018-01-10 23:38:43.686001497 +0100
+++ /var/tmp/diff_new_pack.XhPS7C/_new 2018-01-10 23:38:43.690001310 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-azure-agent
#
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -26,6 +26,7 @@
Source0: WALinuxAgent-%{version}.tar.gz
Patch1: agent-no-auto-update.patch
Patch3: paa_fix_driver_install_detect.patch
+Patch4: paa_rdma_install_proper_driver.patch
BuildRequires: dos2unix
BuildRequires: distribution-release
@@ -114,6 +115,7 @@
%setup -qn WALinuxAgent-%{version}
%patch1
%patch3
+%patch4
%build
%if 0%{?suse_version} && 0%{?suse_version} > 1315
++++++ paa_rdma_install_proper_driver.patch ++++++
--- azurelinuxagent/pa/rdma/suse.py.orig
+++ azurelinuxagent/pa/rdma/suse.py
@@ -95,7 +95,7 @@ class SUSERDMAHandler(RDMAHandler):
logger.info("Package '%s' is not a match." % entry)
else:
logger.info("Package '%s' is a match. Installing." % entry)
- complete_name = '%s-%s' % (package_name, version)
+ complete_name = '%s-%s' % (package_name, entry)
cmd = zypper_install % complete_name
result = shellutil.run(cmd)
if result: