mirror of
https://github.com/clearlinux/WALinuxAgent.git
synced 2026-09-05 21:31:41 +00:00
- 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:
committed by
Hans Krijger
parent
a94e69c773
commit
ab12081fd8
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user