Don't use pkg_glob when guessing name, else we may think the package
is installed when it isn't.pull/4420/head
parent
607680c221
commit
2222532745
|
@ -89,7 +89,7 @@ def query_package(module, name):
|
||||||
if pkgng:
|
if pkgng:
|
||||||
rc, out, err = module.run_command("%s %s" % (pkg_info_path, name_without_digits))
|
rc, out, err = module.run_command("%s %s" % (pkg_info_path, name_without_digits))
|
||||||
else:
|
else:
|
||||||
rc, out, err = module.run_command("%s `%s %s`" % (pkg_info_path, pkg_glob_path, name_without_digits))
|
rc, out, err = module.run_command("%s %s" % (pkg_info_path, name_without_digits))
|
||||||
|
|
||||||
found = rc == 0
|
found = rc == 0
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue