EHCP-Force-Edition/ehcp/install_1.php

74 lines
2.1 KiB
PHP
Executable file

<?php
error_reporting (E_ALL ^ E_NOTICE);
// first part of install.
// this installs mailserver, then, install2 begins,
// i separated these installs because php email function does not work if i re-start php after email install...
$webServerToInstall = "apache2";
if($argc>1){
# Distro and version are always sent
# Get distro version number
$temp = trim($argv[1]);
if(stripos($temp, ".") != FALSE){
$version = $temp;
}
# Distro is needed for Ubuntu only features
$distro = strtolower(trim($argv[2]));
}
for($i=3;$i<=7;$i++){ # accept following arguments in any of position.
if($argc>$i) {
print "argc:$argc\n\n";
switch($argv[$i]) {
case 'noapt': # for only simulating install, apt-get installs are still loged onto a file
$noapt="noapt";
echo "apt-get install disabled due to parameter:noapt \n";
break;
case 'unattended': # tries to suppress most user dialogs.. good for a quick testing. (tr: hizlica test etmek icin guzel..)
$unattended=True;
break;
case 'light': # the light install, non-cruical parts are omitted. good for a quick testing. (tr: hizlica test etmek icin guzel..)
$installmode='light';
break;
case 'extra': # the extra install, means more components
$installmode='extra';
break;
case 'debug':
$debugMode = true;
break;
case 'nginx':
$webServerToInstall = "nginx";
break;
default:
echo __FILE__." dosyasinda bilinmeyen arguman degeri:".$argv[$i];
break;
}
}
}
echo "Some install parameters for file ".__FILE__.": noapt:($noapt), unattended:".($unattended===True?"exact True":"not True")." installmode:($installmode) \n";
include_once('install_lib.php');
$phpConfDir = getPHPConfDir();
// Load preset installation values in install_silently.php if exists:
if(file_exists("install_silently.php")){
require_once 'install_silently.php';
}
// Load preset admin email if there is one
if(file_exists('admin_email.php')){
require_once 'admin_email.php';
}
initialize();
echo "\n------\ninstallpath set as: $ehcpinstalldir \n";
installfiles();
installmailserver();
passvariablestoinstall2();
?>