summaryrefslogtreecommitdiffstats
path: root/ipaserver/install/server/replicainstall.py
diff options
context:
space:
mode:
authorMartin Babinsky <mbabinsk@redhat.com>2016-11-07 09:58:33 +0100
committerJan Cholasta <jcholast@redhat.com>2016-11-11 12:17:25 +0100
commit4e97a0171a862e20089863e4bf0ec88d0ba98a53 (patch)
treee30c7346fd34261025afd1814ec3f8e046bf3ae9 /ipaserver/install/server/replicainstall.py
parent3129b874a2c222ff207f1302e5d85ae12df2eac9 (diff)
downloadfreeipa-4e97a0171a862e20089863e4bf0ec88d0ba98a53.tar.gz
freeipa-4e97a0171a862e20089863e4bf0ec88d0ba98a53.tar.xz
freeipa-4e97a0171a862e20089863e4bf0ec88d0ba98a53.zip
installers: restart DS after KDC is configured
This is required to enable password extension plugin right away so that services configured later can use it to request keytabs via ipa-getkeytab. https://fedorahosted.org/freeipa/ticket/6405 Reviewed-By: Stanislav Laznicka <slaznick@redhat.com>
Diffstat (limited to 'ipaserver/install/server/replicainstall.py')
-rw-r--r--ipaserver/install/server/replicainstall.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/ipaserver/install/server/replicainstall.py b/ipaserver/install/server/replicainstall.py
index af9cd30e3..da790dd93 100644
--- a/ipaserver/install/server/replicainstall.py
+++ b/ipaserver/install/server/replicainstall.py
@@ -1376,6 +1376,10 @@ def install(installer):
setup_pkinit=not options.no_pkinit,
promote=promote)
+ # restart DS to enable ipa-pwd-extop plugin
+ print("Restarting directory server to enable password extension plugin")
+ ds.restart()
+
install_http(
config,
auto_redirect=not options.no_ui_redirect,