diff options
Diffstat (limited to 'ipa-server/ipa-install/ipa-server-install')
-rw-r--r-- | ipa-server/ipa-install/ipa-server-install | 8 |
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 54da6856..b8b9805b 100644 --- a/ipa-server/ipa-install/ipa-server-install +++ b/ipa-server/ipa-install/ipa-server-install @@ -370,7 +370,13 @@ def main(): krb.restart() # Allow apache to connect to the turbogears web gui - run(["/usr/sbin/setsebool", "httpd_can_network", "true"]) + run(["/usr/sbin/setsebool", "-P", "httpd_can_network_connect", "true"]) + + # Start the web gui + run(["/sbin/service", "ipa-webgui", "start"]) + + # Set the web gui to start on boot + run(["/sbin/chkconfig", "ipa-webgui", "on"]) # Restart apache run(["/sbin/service", "httpd", "restart"]) |