summaryrefslogtreecommitdiffstats
path: root/install/tools/ipa-server-install
diff options
context:
space:
mode:
Diffstat (limited to 'install/tools/ipa-server-install')
-rwxr-xr-xinstall/tools/ipa-server-install16
1 files changed, 8 insertions, 8 deletions
diff --git a/install/tools/ipa-server-install b/install/tools/ipa-server-install
index 2c890b4e8..03ee6f46b 100755
--- a/install/tools/ipa-server-install
+++ b/install/tools/ipa-server-install
@@ -633,14 +633,6 @@ def main():
fd.write("enable_ra=True\n")
fd.close()
- # Create a BIND instance
- bind = bindinstance.BindInstance(fstore, dm_password)
- bind.setup(host_name, ip_address, realm_name, domain_name, dns_forwarders)
- if options.setup_dns:
- bind.create_instance()
- else:
- bind.create_sample_bind_zone()
-
# Apply any LDAP updates. Needs to be done after the configuration file
# is created
service.print_msg("Applying LDAP updates")
@@ -653,6 +645,14 @@ def main():
service.print_msg("restarting the KDC")
krb.restart()
+ # Create a BIND instance
+ bind = bindinstance.BindInstance(fstore, dm_password)
+ bind.setup(host_name, ip_address, realm_name, domain_name, dns_forwarders)
+ if options.setup_dns:
+ bind.create_instance()
+ else:
+ bind.create_sample_bind_zone()
+
# Set the admin user kerberos password
ds.change_admin_password(admin_password)