summaryrefslogtreecommitdiffstats
path: root/ipaserver/install/ca.py
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2015-08-25 13:38:05 -0400
committerJan Cholasta <jcholast@redhat.com>2015-09-22 10:44:45 +0200
commit953b1079cfc8d2da486ebb65b9cfd4d85f680c67 (patch)
tree6fc58cde3f005de47559ed965c0396762091bd36 /ipaserver/install/ca.py
parent65e958fda4aee2e08cd1f7043369710b839476c3 (diff)
downloadfreeipa-953b1079cfc8d2da486ebb65b9cfd4d85f680c67.tar.gz
freeipa-953b1079cfc8d2da486ebb65b9cfd4d85f680c67.tar.xz
freeipa-953b1079cfc8d2da486ebb65b9cfd4d85f680c67.zip
Remove unused arguments
In the dogtag/ca/kra instances self.domain is never used. Remove it. Signed-off-by: Simo Sorce <simo@redhat.com> Reviewed-By: Jan Cholasta <jcholast@redhat.com>
Diffstat (limited to 'ipaserver/install/ca.py')
-rw-r--r--ipaserver/install/ca.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/ipaserver/install/ca.py b/ipaserver/install/ca.py
index 7e08b5ac0..3c36e1b66 100644
--- a/ipaserver/install/ca.py
+++ b/ipaserver/install/ca.py
@@ -156,18 +156,17 @@ def install_step_0(standalone, replica_config, options):
if standalone:
ca.create_ra_agent_db = False
if external == 0:
- ca.configure_instance(host_name, domain_name, dm_password,
+ ca.configure_instance(host_name, dm_password,
dm_password, subject_base=subject_base,
ca_signing_algorithm=options.ca_signing_algorithm)
elif external == 1:
- ca.configure_instance(host_name, domain_name, dm_password,
+ ca.configure_instance(host_name, dm_password,
dm_password, csr_file=paths.ROOT_IPA_CSR,
subject_base=subject_base,
ca_signing_algorithm=options.ca_signing_algorithm,
ca_type=options.external_ca_type)
else:
- ca.configure_instance(host_name, domain_name, dm_password,
- dm_password,
+ ca.configure_instance(host_name, dm_password, dm_password,
cert_file=external_cert_file.name,
cert_chain_file=external_ca_file.name,
subject_base=subject_base,