From 57706ba5242510c3d755883f048179e55292a98b Mon Sep 17 00:00:00 2001
From: pedro_morgan <pedro_morgan@ispconfig3>
Date: Fri, 17 Aug 2007 22:14:02 -0400
Subject: [PATCH] Pedro makes the code look like its a PEAR, sorry adam. Aalso enquring for interface and sanity checks"

---
 install/options.conf.php |   40 +++++++++++++++++++---------------------
 1 files changed, 19 insertions(+), 21 deletions(-)

diff --git a/install/options.conf.php b/install/options.conf.php
index 269c9e6..e76aa3b 100644
--- a/install/options.conf.php
+++ b/install/options.conf.php
@@ -1,26 +1,24 @@
 <?php
 
-/*
-	Installation Options
-*/
+//** TODO: These options need to be in an install script somehow
 
-$conf["language"] = "en";
-$conf["distname"] = "debian40";
-$conf["hostname"] = "server1.example.com"; // Full hostname
-$conf["ispconfig_install_dir"] = "/usr/local/ispconfig";
-$conf["ispconfig_config_dir"] = "/usr/local/ispconfig";
-$conf["server_id"] = 1;
+//** Installation Options
 
-/*
-	MySQL Database settings
-*/
-$conf["mysql"]["host"] = "localhost";
-$conf["mysql"]["ip"] = "127.0.0.1";
-$conf["mysql"]["port"] = "3306";
-$conf["mysql"]["database"] = "dbispconfig";
-$conf["mysql"]["admin_user"] = "root";
-$conf["mysql"]["admin_password"] = "";
-$conf["mysql"]["ispconfig_user"] = "ispconfig";
-$conf["mysql"]["ispconfig_password"] = "5sDrewBhk";
+$conf['language'] = 'en';
+$conf['distname'] = 'debian40';
+$conf['hostname'] = 'server1.example.com'; // Full hostname
+$conf['ispconfig_install_dir'] = '/usr/local/ispconfig';
+$conf['ispconfig_config_dir'] = '/usr/local/ispconfig';
+$conf['server_id'] = 1;
 
-?>
+//**MySQL Database settings
+$conf['mysql']['host'] = 'localhost';
+$conf['mysql']['ip'] = '127.0.0.1';
+$conf['mysql']['port'] = '3306';
+$conf['mysql']['database'] = 'dbispconfig';
+$conf['mysql']['admin_user'] = 'root';
+$conf['mysql']['admin_password'] = '';
+$conf['mysql']['ispconfig_user'] = 'ispconfig';
+$conf['mysql']['ispconfig_password'] = '5sDrewBhk';
+
+?>
\ No newline at end of file

--
Gitblit v1.9.1