67 lines
2.3 KiB
PHP
Executable File
67 lines
2.3 KiB
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
|
|
/**
|
|
* This file is part of the Froxlor project.
|
|
* Copyright (c) 2010 the Froxlor Team (see authors).
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, you can also view it online at
|
|
* https://files.froxlor.org/misc/COPYING.txt
|
|
*
|
|
* @copyright the authors
|
|
* @author Froxlor team <team@froxlor.org>
|
|
* @license https://files.froxlor.org/misc/COPYING.txt GPLv2
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Froxlor\Cli\ConfigDiff;
|
|
use Symfony\Component\Console\Application;
|
|
use Froxlor\Cli\RunApiCommand;
|
|
use Froxlor\Cli\ConfigServices;
|
|
use Froxlor\Cli\PhpSessionclean;
|
|
use Froxlor\Cli\SwitchServerIp;
|
|
use Froxlor\Cli\UpdateCommand;
|
|
use Froxlor\Cli\InstallCommand;
|
|
use Froxlor\Cli\MasterCron;
|
|
use Froxlor\Cli\UserCommand;
|
|
use Froxlor\Cli\ValidateAcmeWebroot;
|
|
use Froxlor\Froxlor;
|
|
|
|
// validate correct php version
|
|
if (version_compare("7.4.0", PHP_VERSION, ">=")) {
|
|
die('Froxlor requires at least php-7.4. Please validate that your php-cli version is suitable.');
|
|
}
|
|
|
|
// ensure that default timezone is set
|
|
if (function_exists("date_default_timezone_set") && function_exists("date_default_timezone_get")) {
|
|
@date_default_timezone_set(@date_default_timezone_get());
|
|
}
|
|
|
|
require dirname(__DIR__) . '/vendor/autoload.php';
|
|
require dirname(__DIR__) . '/lib/tables.inc.php';
|
|
|
|
$application = new Application('froxlor-cli', Froxlor::getFullVersion());
|
|
$application->add(new RunApiCommand());
|
|
$application->add(new ConfigServices());
|
|
$application->add(new PhpSessionclean());
|
|
$application->add(new SwitchServerIp());
|
|
$application->add(new UpdateCommand());
|
|
$application->add(new InstallCommand());
|
|
$application->add(new MasterCron());
|
|
$application->add(new UserCommand());
|
|
$application->add(new ValidateAcmeWebroot());
|
|
$application->add(new ConfigDiff());
|
|
$application->run();
|