mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-28 03:00:23 -07:00
Merge pull request #7942 from sidred10/devel
Fixed FreeBSD ports install issue
This commit is contained in:
commit
29434b06b8
1 changed files with 5 additions and 6 deletions
|
@ -99,15 +99,14 @@ def query_package(module, name):
|
||||||
def matching_packages(module, name):
|
def matching_packages(module, name):
|
||||||
|
|
||||||
ports_glob_path = module.get_bin_path('ports_glob', True)
|
ports_glob_path = module.get_bin_path('ports_glob', True)
|
||||||
rc, out, err = module.run_command("%s %s | wc" % (ports_glob_path, name))
|
rc, out, err = module.run_command("%s %s" % (ports_glob_path, name))
|
||||||
parts = out.split()
|
#counts the numer of packages found
|
||||||
occurrences = int(parts[0])
|
occurrences = out.count('\n')
|
||||||
if occurrences == 0:
|
if occurrences == 0:
|
||||||
name_without_digits = re.sub('[0-9]', '', name)
|
name_without_digits = re.sub('[0-9]', '', name)
|
||||||
if name != name_without_digits:
|
if name != name_without_digits:
|
||||||
rc, out, err = module.run_command("%s %s | wc" % (ports_glob_path, name_without_digits))
|
rc, out, err = module.run_command("%s %s" % (ports_glob_path, name_without_digits))
|
||||||
parts = out.split()
|
occurrences = out.count('\n')
|
||||||
occurrences = int(parts[0])
|
|
||||||
return occurrences
|
return occurrences
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue