From 1bd099a114a29e461307e0defcca3bfe422fabb5 Mon Sep 17 00:00:00 2001 From: Martin Babinsky Date: Tue, 7 Apr 2015 16:51:59 +0200 Subject: do not install CA on replica during integration test if setup_ca=False The patch fixes bug in the construction of ipa-replica-install arguments in test_integration/tasks.install_replica. Due to this bug the replica installation during certain integration tests involved CA setup even when setup_ca was set to False. Reviewed-By: Milan Kubik --- ipatests/test_integration/tasks.py | 1 - 1 file changed, 1 deletion(-) diff --git a/ipatests/test_integration/tasks.py b/ipatests/test_integration/tasks.py index c83fc65f1..2b83f2746 100644 --- a/ipatests/test_integration/tasks.py +++ b/ipatests/test_integration/tasks.py @@ -231,7 +231,6 @@ def install_replica(master, replica, setup_ca=True, setup_dns=False): 'replica-info.gpg') replica.put_file_contents(replica_filename, replica_bundle) args = ['ipa-replica-install', '-U', - '--setup-ca', '-p', replica.config.dirman_password, '-w', replica.config.admin_password, '--ip-address', replica.ip, -- cgit