From b6b5f6073bf4e12b8357a6ec9f5a4f6bb683437f Mon Sep 17 00:00:00 2001 From: Alexander Bokovoy Date: Sat, 26 Mar 2022 14:52:21 +0200 Subject: [PATCH] ipatests: fix check for AD topology being present Fixes: https://pagure.io/freeipa/issue/9133 Signed-off-by: Alexander Bokovoy Reviewed-By: Florence Blanc-Renaud --- ipatests/pytest_ipa/integration/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipatests/pytest_ipa/integration/tasks.py b/ipatests/pytest_ipa/integration/tasks.py index 8a1b5d383db1b09a5dc3cab7ee58ceb071e4fbc2..99b907c6495120f440a56e688399356b1fc6eae4 100755 --- a/ipatests/pytest_ipa/integration/tasks.py +++ b/ipatests/pytest_ipa/integration/tasks.py @@ -570,7 +570,7 @@ def install_client(master, client, extra_args=[], user=None, args.extend(extra_args) - if is_fips_enabled(client) and 'ad' in master: + if is_fips_enabled(client) and getattr(master.config, 'ad_domains', False): enable_crypto_subpolicy(client, "AD-SUPPORT") result = client.run_command(args, stdin_text=stdin_text) -- 2.34.1