Skip to content
Snippets Groups Projects
Commit d540be42 authored by Thomas Woerner's avatar Thomas Woerner
Browse files

ipagroup: Fix test for externalmember use in client context

The test has been changed with the management fix for AD objects. The
conditional was lacking brackets and therefore did not properly work.
The brackets have been added.

Related: https://issues.redhat.com/browse/RHEL-70023
parent c1d7ed1d
No related branches found
No related tags found
No related merge requests found
......@@ -581,8 +581,8 @@ def main():
"https://pagure.io/freeipa/issue/9349")
if (
externalmember is not None
or idoverrideuser is not None
(externalmember is not None
or idoverrideuser is not None)
and context == "client"
):
ansible_module.fail_json(
......
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