From b6376411b01d5856d90604f5e7d94cf17d2ecc80 Mon Sep 17 00:00:00 2001
From: laking <laking@ispconfig3>
Date: Mon, 04 Apr 2011 18:18:08 -0400
Subject: [PATCH] Update on certificte CA-signing. Moved config to control panel.
---
install/install.php | 14 --------------
1 files changed, 0 insertions(+), 14 deletions(-)
diff --git a/install/install.php b/install/install.php
index 7b7afed..a17e039 100644
--- a/install/install.php
+++ b/install/install.php
@@ -437,20 +437,6 @@
swriteln('Configuring Firewall');
$inst->configure_firewall();
}
-
- //** Configure CA
- if(strtolower($inst->simple_query('Should this installation use a local CA to default-sign certificates?',array('y','n'),'n')) == 'y') {
- $conf['CA-enabled'] = true;
- $conf['CA-path'] = $inst->free_query('Path to the CA folder: ', $conf['CA-path']);
- $conf['CA-pass'] = $inst->free_query('Root Certificate Passphrase', '');
- if(!is_file($conf['CA-path'].'/openssl.cnf'))
- {
- swriteln('ERROR. '.$conf['CA-path'].'/openssl.cnf not found.');
- $conf['CA-enabled'] = false;
- }
- //$inst->configure_ca();
- } else {$conf['CA-enabled'] = false;};
-
//** Configure ISPConfig :-)
if(strtolower($inst->simple_query('Install ISPConfig Web Interface',array('y','n'),'y')) == 'y') {
swriteln('Installing ISPConfig');
--
Gitblit v1.9.1