66 lines
1.2 KiB
PHP
66 lines
1.2 KiB
PHP
#!/usr/bin/php
|
|
<?php
|
|
|
|
// Paramètres
|
|
if ( $argc < 1 || in_array($argv[1], array('--help', '-help', '-h', '-?')) ) {
|
|
?>
|
|
Installation
|
|
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
|
|
|
|
<?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)');
|
|
$wwwroot = realpath(dirname(__FILE__).'/../../');
|
|
|
|
switch ($action)
|
|
{
|
|
case 'install':
|
|
writeConfig();
|
|
changePermission();
|
|
break;
|
|
|
|
case 'genwsdl':
|
|
|
|
break;
|
|
}
|
|
|
|
/**
|
|
* Vérfie si l'utilisateur est ROOT
|
|
*/
|
|
function isRoot()
|
|
{
|
|
$uid = exec('echo $(id -u)');
|
|
if ((int) $uid == 0){
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
function changePermission(){
|
|
passthru('chown -R www-data: '.realpath(dirname(__FILE__).'/../'));
|
|
passthru('chmod +x '.realpath(dirname(__FILE__).'/../batch/*.php'));
|
|
}
|
|
|
|
function writeConfig()
|
|
{
|
|
global $hostname;
|
|
passthru('cp -v '.realpath(dirname(__FILE__)).'/'.$hostname.'/config.php ' .
|
|
realpath(dirname(__FILE__)).'/config.php');
|
|
}
|
|
|