Skip to content
Snippets Groups Projects
Commit 3dd98559 authored by Rafael Guterres Jeffman's avatar Rafael Guterres Jeffman
Browse files

IPAAnsibleModule: Provide function to fail in param is invalid.

Almost all modules require an algorithm ta validade if the user
provided arguments for the playbook  are valid for the requested
state and/or action.

This patch provides a function that tests if any of a list of
arguments were set, and fail with a standardized message, making
all modules fail in the same way.
parent 742799f3
No related branches found
No related tags found
No related merge requests found
...@@ -674,6 +674,30 @@ else: ...@@ -674,6 +674,30 @@ else:
""" """
return module_params_get(self, name) return module_params_get(self, name)
def params_fail_used_invalid(self, invalid_params, state, action=None):
"""
Fail module execution if one of the invalid parameters is not None.
Parameters
----------
invalid_params:
List of parameters that must value 'None'.
state:
State being tested.
action:
Action being tested (optional).
"""
if action is None:
msg = "Argument '{0}' can not be used with state '{1}'"
else:
msg = "Argument '{0}' can not be used with action "\
"'{2}' and state '{1}'"
for param in invalid_params:
if self.params.get(param) is not None:
self.fail_json(msg=msg.format(param, state, action))
def ipa_command(self, command, name, args): def ipa_command(self, command, name, args):
""" """
Execute an IPA API command with a required `name` argument. Execute an IPA API command with a required `name` argument.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment