From 602446004afef473ff84fd179fe7414f174e60d2 Mon Sep 17 00:00:00 2001 From: Rafael Guterres Jeffman <rjeffman@redhat.com> Date: Thu, 9 Sep 2021 00:19:59 -0300 Subject: [PATCH] ipatopologysuffix: Fix usage of IPAAnsibleModule. Fix parameters used to IPAAnsibleModule.ipa_command, as a singlo list was being used instead of a parameter list. --- plugins/modules/ipatopologysuffix.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/modules/ipatopologysuffix.py b/plugins/modules/ipatopologysuffix.py index 47119264..c5be3d3e 100644 --- a/plugins/modules/ipatopologysuffix.py +++ b/plugins/modules/ipatopologysuffix.py @@ -89,8 +89,7 @@ def main(): with ansible_module.ipa_connect(): # Execute command - ansible_module.ipa_command(["topologysuffix_verify", suffix, - {}]) + ansible_module.ipa_command("topologysuffix_verify", suffix, {}) # Done -- GitLab