Fix typo in portinstall
This commit is contained in:
parent
349063743f
commit
7c3831ab16
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ def remove_packages(module, packages):
|
||||||
|
|
||||||
if query_package(module, package):
|
if query_package(module, package):
|
||||||
name_without_digits = re.sub('[0-9]', '', package)
|
name_without_digits = re.sub('[0-9]', '', package)
|
||||||
rc, out, err = module.run_command("%s `%s %s`" % (pkg_delete_path, pkg_glob_path, pipes.quote(lame_without_digits)),use_unsafe_shell=True)
|
rc, out, err = module.run_command("%s `%s %s`" % (pkg_delete_path, pkg_glob_path, pipes.quote(name_without_digits)),use_unsafe_shell=True)
|
||||||
if query_package(module, package):
|
if query_package(module, package):
|
||||||
module.fail_json(msg="failed to remove %s: %s" % (package, out))
|
module.fail_json(msg="failed to remove %s: %s" % (package, out))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue