Commit 16bf3e15 by Michael DeHaan

Merge pull request #1042 from dhozac/yum-install-rpm

Invoke is_installed correctly from rpm path
parents e7eab932 56b1a8ce
...@@ -291,7 +291,7 @@ def install(module, items, repoq, yum_basecmd, conf_file): ...@@ -291,7 +291,7 @@ def install(module, items, repoq, yum_basecmd, conf_file):
nvra = local_nvra(spec) nvra = local_nvra(spec)
# look for them in the rpmdb # look for them in the rpmdb
if is_installed(repoq, nvra, conf_file): if is_installed(module, repoq, nvra, conf_file):
# if they are there, skip it # if they are there, skip it
continue continue
pkg = spec pkg = spec
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment