1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

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

Invoke is_installed correctly from rpm path
This commit is contained in:
Michael DeHaan 2012-09-13 05:12:09 -07:00
commit 16bf3e15c7

View 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