Suppression gestion environnement comme paramètre obligatoire

This commit is contained in:
Michael RICOIS 2010-09-24 09:25:45 +00:00
parent bb2931df42
commit ce3f97f439

View File

@ -1,12 +1,12 @@
#!/usr/bin/php
<?php
// Paramètres
if ( $argc != 3 || in_array($argv[1], array('--help', '-help', '-h', '-?')) ) {
if ( $argc != 2 || 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]; ?> options environnement
Utilisation : <?php echo $argv[0]; ?> options [environnement]
options :
check
@ -56,7 +56,7 @@ switch ($action)
case 'configure':
//Création de la configuration
echo "Ecriture de la configuration\n";
writeConfig($mode);
writeConfig();
//Création des liens symboliques
echo "Création des liens symboliques\n";
writeSymlinks();
@ -123,7 +123,7 @@ function writeSymlinks(){
}
}
function writeConfig($mode)
function writeConfig()
{
global $hostname;
passthru('cp '.PATH_SITE.'/config/'.$hostname.'/config.inc '.PATH_SITE.'/config/config.inc');