summaryrefslogtreecommitdiffstats
path: root/ipa-server/ipa-install/ipa-server-install
diff options
context:
space:
mode:
Diffstat (limited to 'ipa-server/ipa-install/ipa-server-install')
-rw-r--r--ipa-server/ipa-install/ipa-server-install8
1 files changed, 7 insertions, 1 deletions
diff --git a/ipa-server/ipa-install/ipa-server-install b/ipa-server/ipa-install/ipa-server-install
index 2fa9182bc..8ba8425dc 100644
--- a/ipa-server/ipa-install/ipa-server-install
+++ b/ipa-server/ipa-install/ipa-server-install
@@ -119,9 +119,15 @@ def main():
# Restart apache
run(["/sbin/service", "httpd", "restart"])
- # Set apache to be on at boot
+ # Set apache to start on boot
run(["/sbin/chkconfig", "httpd", "on"])
+ # Set fedora-ds to start on boot
+ run(["/sbin/chkconfig", "fedora-ds", "on"])
+
+ # Set the KDC to start on boot
+ run(["/sbin/chkconfig", "krb5kdc", "on"])
+
# Create the config file
fd = open("/etc/ipa/ipa.conf", "w")
fd.write("[defaults]\n")