diff options
author | Martin Basti <mbasti@redhat.com> | 2015-12-06 18:43:37 +0100 |
---|---|---|
committer | Martin Basti <mbasti@redhat.com> | 2015-12-07 19:12:24 +0100 |
commit | cac756b87d2eb521f038d0fb2ddb2a98569cf1af (patch) | |
tree | ee1ffc72412c8db388e19e869683bbf0d9ad22e2 /ipaserver/install | |
parent | bee222372aef6d8dbc353458392efc6b0ad225ea (diff) | |
download | freeipa-cac756b87d2eb521f038d0fb2ddb2a98569cf1af.tar.gz freeipa-cac756b87d2eb521f038d0fb2ddb2a98569cf1af.tar.xz freeipa-cac756b87d2eb521f038d0fb2ddb2a98569cf1af.zip |
Force creation of services during replica install
Missing A record should not prevent replica to be installed.
Reviewed-By: Martin Babinsky <mbabinsk@redhat.com>
Diffstat (limited to 'ipaserver/install')
-rw-r--r-- | ipaserver/install/server/replicainstall.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ipaserver/install/server/replicainstall.py b/ipaserver/install/server/replicainstall.py index dad1ca3d7..455416675 100644 --- a/ipaserver/install/server/replicainstall.py +++ b/ipaserver/install/server/replicainstall.py @@ -79,7 +79,8 @@ def install_http_certs(config, fstore): principal = 'HTTP/%s@%s' % (config.host_name, config.realm_name) installutils.install_service_keytab(principal, config.master_host_name, - paths.IPA_KEYTAB) + paths.IPA_KEYTAB, + force_service_add=True) # Obtain certificate for the HTTP service nssdir = certs.NSS_DIR |