summaryrefslogtreecommitdiffstats
path: root/ipatests/test_integration
diff options
context:
space:
mode:
authorMilan KubĂ­k <mkubik@redhat.com>2016-01-19 15:06:38 +0100
committerMartin Basti <mbasti@redhat.com>2016-01-27 13:14:51 +0100
commit8f6fb7b4eaa74e9478f946a3be862e2d02158f6d (patch)
tree2f3794f2d3ddcfe41de3b024e283a3cc33c16993 /ipatests/test_integration
parent9a945b201eab40dff7781d3240f046b648644779 (diff)
downloadfreeipa-8f6fb7b4eaa74e9478f946a3be862e2d02158f6d.tar.gz
freeipa-8f6fb7b4eaa74e9478f946a3be862e2d02158f6d.tar.xz
freeipa-8f6fb7b4eaa74e9478f946a3be862e2d02158f6d.zip
ipatests: fix the install of external ca
Fixes the install invocation in the test to use domain and realm correctly. Also makes the test aware of domain levels. https://fedorahosted.org/freeipa/ticket/5605 Reviewed-By: Martin Babinsky <mbabinsk@redhat.com>
Diffstat (limited to 'ipatests/test_integration')
-rw-r--r--ipatests/test_integration/test_external_ca.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/ipatests/test_integration/test_external_ca.py b/ipatests/test_integration/test_external_ca.py
index fbffdf14b..1228c9d65 100644
--- a/ipatests/test_integration/test_external_ca.py
+++ b/ipatests/test_integration/test_external_ca.py
@@ -33,7 +33,9 @@ class TestExternalCA(IntegrationTest):
'-a', self.master.config.admin_password,
'-p', self.master.config.dirman_password,
'--setup-dns', '--no-forwarders',
- '-r', self.master.domain.name,
+ '-n', self.master.domain.name,
+ '-r', self.master.domain.realm,
+ '--domain-level=%i' % self.master.config.domain_level,
'--external-ca'
])