summaryrefslogtreecommitdiffstats
path: root/ipaserver/install/server/replicainstall.py
diff options
context:
space:
mode:
authorFraser Tweedale <ftweedal@redhat.com>2016-11-16 19:59:58 +1000
committerJan Cholasta <jcholast@redhat.com>2017-01-11 15:26:20 +0100
commitc6db493b06320455a2366945911939a605df2a73 (patch)
tree044bceb5630e6e5b41f1f791b19a35abf2b4a0e4 /ipaserver/install/server/replicainstall.py
parentdb6674096c598918ea6b12ca33a96cf5e617a434 (diff)
downloadfreeipa-c6db493b06320455a2366945911939a605df2a73.tar.gz
freeipa-c6db493b06320455a2366945911939a605df2a73.tar.xz
freeipa-c6db493b06320455a2366945911939a605df2a73.zip
installer: rename --subject to --subject-base
The --subject option is actually used to provide the "subject base". We are also going to add an option for fully specifying the IPA CA subject DN in a subsequent commit. So to avoid confusion, rename --subject to --subject-base, retaining --subject as a deprecated alias. Part of: https://fedorahosted.org/freeipa/ticket/2614 Reviewed-By: Jan Cholasta <jcholast@redhat.com>
Diffstat (limited to 'ipaserver/install/server/replicainstall.py')
-rw-r--r--ipaserver/install/server/replicainstall.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipaserver/install/server/replicainstall.py b/ipaserver/install/server/replicainstall.py
index 212616908..915281d78 100644
--- a/ipaserver/install/server/replicainstall.py
+++ b/ipaserver/install/server/replicainstall.py
@@ -796,7 +796,7 @@ def install_check(installer):
if ca_enabled:
options.realm_name = config.realm_name
options.host_name = config.host_name
- options.subject = config.subject_base
+ options.subject_base = config.subject_base
ca.install_check(False, config, options)
if kra_enabled:
@@ -1203,7 +1203,7 @@ def promote_check(installer):
if ca_enabled:
options.realm_name = config.realm_name
options.host_name = config.host_name
- options.subject = config.subject_base
+ options.subject_base = config.subject_base
ca.install_check(False, config, options)
if kra_enabled: