summaryrefslogtreecommitdiffstats
path: root/install/tools/ipa-server-install
diff options
context:
space:
mode:
authorMartin Kosek <mkosek@redhat.com>2013-10-25 10:22:08 +0200
committerPetr Viktorin <pviktori@redhat.com>2013-10-25 15:35:39 +0200
commit4bed0de60d5bac005c9c54c7376b8dd873d1dd1d (patch)
tree055daf74853095047110f7548ba0289a3b365dbb /install/tools/ipa-server-install
parent0880d030ae7211b9d2e7279195e67f4f5712a69c (diff)
downloadfreeipa-4bed0de60d5bac005c9c54c7376b8dd873d1dd1d.tar.gz
freeipa-4bed0de60d5bac005c9c54c7376b8dd873d1dd1d.tar.xz
freeipa-4bed0de60d5bac005c9c54c7376b8dd873d1dd1d.zip
Remove mod_ssl conflict
Since mod_nss-1.0.8-24, mod_nss and mod_ssl can co-exist on one machine (of course, when listening to different ports). To make sure that mod_ssl is not configured to listen on 443 (default mod_ssl configuration), add a check to the installer checking of either mod_nss or mod_ssl was configured to listen on that port. https://fedorahosted.org/freeipa/ticket/3974
Diffstat (limited to 'install/tools/ipa-server-install')
-rwxr-xr-x[-rw-r--r--]install/tools/ipa-server-install4
1 files changed, 4 insertions, 0 deletions
diff --git a/install/tools/ipa-server-install b/install/tools/ipa-server-install
index cf769f557..b3dcf6d93 100644..100755
--- a/install/tools/ipa-server-install
+++ b/install/tools/ipa-server-install
@@ -791,6 +791,10 @@ def main():
except ipaclient.ntpconf.NTPConfigurationError:
pass
+ # Check to see if httpd is already configured to listen on 443
+ if httpinstance.httpd_443_configured():
+ sys.exit("Aborting installation")
+
realm_name = ""
host_name = ""
domain_name = ""