yum: fallback to epoch=0 if not available

pull/30358/head
Martin Krizek 7 years ago committed by Toshio Kuratomi
parent fd8b1e5f34
commit 59702318e1

@ -616,7 +616,7 @@ def local_envra(path):
finally: finally:
os.close(fd) os.close(fd)
return '%s:%s-%s-%s.%s' % (header[rpm.RPMTAG_EPOCH], return '%s:%s-%s-%s.%s' % (header[rpm.RPMTAG_EPOCH] or '0',
header[rpm.RPMTAG_NAME], header[rpm.RPMTAG_NAME],
header[rpm.RPMTAG_VERSION], header[rpm.RPMTAG_VERSION],
header[rpm.RPMTAG_RELEASE], header[rpm.RPMTAG_RELEASE],
@ -755,7 +755,7 @@ def install(module, items, repoq, yum_basecmd, conf_file, en_repos, dis_repos, i
elif '://' in spec: elif '://' in spec:
# download package so that we can check if it's already installed # download package so that we can check if it's already installed
package = fetch_rpm_from_url(spec, module=module) package = fetch_rpm_from_url(spec, module=module)
envra = local_envra(module, package) envra = local_envra(package)
if is_installed(module, repoq, envra, conf_file, en_repos=en_repos, dis_repos=dis_repos, installroot=installroot): if is_installed(module, repoq, envra, conf_file, en_repos=en_repos, dis_repos=dis_repos, installroot=installroot):
# if it's there, skip it # if it's there, skip it
continue continue

Loading…
Cancel
Save