summaryrefslogtreecommitdiffstats
path: root/ipatests/test_integration
diff options
context:
space:
mode:
authorMartin Basti <mbasti@redhat.com>2016-01-14 10:23:11 +0100
committerMartin Basti <mbasti@redhat.com>2016-01-14 13:19:57 +0100
commit26899c91afd36b39908a3a73363aff1787c9dc07 (patch)
tree578c89039d4e34e759dd5a976183b989fc69c483 /ipatests/test_integration
parent2320be18a34628fa6d05ffc42e695da5dd6dab6e (diff)
downloadfreeipa-26899c91afd36b39908a3a73363aff1787c9dc07.tar.gz
freeipa-26899c91afd36b39908a3a73363aff1787c9dc07.tar.xz
freeipa-26899c91afd36b39908a3a73363aff1787c9dc07.zip
CI test: fix regression in task.install_kra
ipa-kra-install needs directory manager password Regression caused by c4b9b295d8184694c50c0d56051e0273445c98ec Reviewed-By: Martin Basti <mbasti@redhat.com>
Diffstat (limited to 'ipatests/test_integration')
-rw-r--r--ipatests/test_integration/tasks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipatests/test_integration/tasks.py b/ipatests/test_integration/tasks.py
index 346c96ea3..6fdcf9a90 100644
--- a/ipatests/test_integration/tasks.py
+++ b/ipatests/test_integration/tasks.py
@@ -957,7 +957,7 @@ def ipa_restore(master, backup_path):
def install_kra(host, domain_level=None, first_instance=False, raiseonerr=True):
if domain_level is None:
domain_level = domainlevel(host)
- command = ["ipa-kra-install", "-U"]
+ command = ["ipa-kra-install", "-U", "-p", host.config.dirman_password]
if domain_level == DOMAIN_LEVEL_0 and not first_instance:
replica_file = get_replica_filename(host)
command.append(replica_file)