diff options
author | Martin Babinsky <mbabinsk@redhat.com> | 2015-04-07 16:51:59 +0200 |
---|---|---|
committer | Martin Kosek <mkosek@redhat.com> | 2015-04-15 13:09:59 +0200 |
commit | 1bd099a114a29e461307e0defcca3bfe422fabb5 (patch) | |
tree | 4f99c2857fb45008316aea5ba09ebf7e8ffe9089 | |
parent | c8fae594df474669416b96b8033528332daf9b37 (diff) | |
download | freeipa-1bd099a114a29e461307e0defcca3bfe422fabb5.tar.gz freeipa-1bd099a114a29e461307e0defcca3bfe422fabb5.tar.xz freeipa-1bd099a114a29e461307e0defcca3bfe422fabb5.zip |
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 <mkubik@redhat.com>
-rw-r--r-- | ipatests/test_integration/tasks.py | 1 |
1 files changed, 0 insertions, 1 deletions
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, |