mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Module portinstall: use_packages is a bool (#47370)
The module has been checking if use_packages is a string equal to "yes", but AnsibleModule actually converts the use_packages argument to a bool.
This commit is contained in:
parent
f7ba63e047
commit
300db3af84
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ def install_packages(module, packages, use_packages):
|
||||||
module.run_command("pkg install -y portupgrade")
|
module.run_command("pkg install -y portupgrade")
|
||||||
portinstall_path = module.get_bin_path('portinstall', True)
|
portinstall_path = module.get_bin_path('portinstall', True)
|
||||||
|
|
||||||
if use_packages == "yes":
|
if use_packages:
|
||||||
portinstall_params = "--use-packages"
|
portinstall_params = "--use-packages"
|
||||||
else:
|
else:
|
||||||
portinstall_params = ""
|
portinstall_params = ""
|
||||||
|
|
Loading…
Add table
Reference in a new issue