- Install proper version of rdma package (#995)

+ Depending on the order of the found available packages the wrong rdma
    package may be installed. Use the proper variable to identify the
    package version to install
This commit is contained in:
Robert Schweikert
2018-01-10 15:48:20 -08:00
committed by Hans Krijger
parent a94e69c773
commit ab12081fd8
+1 -1
View File
@@ -91,7 +91,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: