Complement script d'installation

This commit is contained in:
Michael RICOIS 2011-03-23 15:43:28 +00:00
parent eb6673ac4a
commit 2a4eb8454d

View File

@ -10,17 +10,13 @@ Avec les options --help, -help, -h, et -?, vous obtiendrez cette aide.
Utilisation : <?php echo $argv[0]; ?> [action]
action :
- install : Création de la configuration et des modifications nécessaire sur les fichiers
- configure : Configuration
- install : Configuration, Switch entre version
<?php
exit;
}
if (!isRoot()) {
echo 'Vous devez être ROOT pour utiliser ce script';
exit;
}
$action = $argv[1];
$mode = strtoupper($argv[2]);
$hostname = exec('echo $(hostname)');
@ -28,13 +24,20 @@ $wwwroot = realpath(dirname(__FILE__).'/../../');
switch ($action)
{
case 'install':
case 'configure':
writeConfig();
changePermission();
break;
case 'genwsdl':
case 'install':
if (!isRoot()) {
echo "Vous devez être ROOT pour utiliser ce script.\n";
exit;
}
writeConfig();
changePermission();
changePrimarySymlink();
passthru('php ../batch/genwsdl.php all');
break;
}
@ -51,11 +54,18 @@ function isRoot()
}
}
function changePermission(){
function changePermission()
{
passthru('chown -R www-data: '.realpath(dirname(__FILE__).'/../'));
passthru('chmod +x '.realpath(dirname(__FILE__).'/../batch/*.php'));
}
function changePrimarySymlink()
{
passthru('rm '.$wwwroot.'/webservice');
passthru('ln -s '.realpath(dirname(__FILE__).'/../').' '.$wwwroot.'/webservice');
}
function writeConfig()
{
global $hostname;