ipareplica_test: Deactivate adtrust_imported and kra_imported tests

These test are failing because there is no adtrust_imported and
kra_imported setting yet in ansible_ipa_replica.
This commit is contained in:
Thomas Woerner
2019-04-03 18:47:13 +02:00
parent 7a2d2c5236
commit 5d79745e88

View File

@@ -159,19 +159,19 @@ def main():
# version specific tests #
if options.setup_adtrust and not adtrust_imported:
#if "adtrust" not in options._allow_missing:
ansible_module.fail_json(msg="adtrust can not be imported")
#else:
# options.setup_adtrust = False
# ansible_module.warn(msg="adtrust is not supported, disabling")
#if options.setup_adtrust and not adtrust_imported:
# #if "adtrust" not in options._allow_missing:
# ansible_module.fail_json(msg="adtrust can not be imported")
# #else:
# # options.setup_adtrust = False
# # ansible_module.warn(msg="adtrust is not supported, disabling")
if options.setup_kra and not kra_imported:
#if "kra" not in options._allow_missing:
ansible_module.fail_json(msg="kra can not be imported")
#else:
# options.setup_kra = False
# ansible_module.warn(msg="kra is not supported, disabling")
#if options.setup_kra and not kra_imported:
# #if "kra" not in options._allow_missing:
# ansible_module.fail_json(msg="kra can not be imported")
# #else:
# # options.setup_kra = False
# # ansible_module.warn(msg="kra is not supported, disabling")
# From ipa installer classes