Browse Source

adding

release/0.1
Björn 4 years ago
parent
commit
b2ebdb15ca
12 changed files with 33 additions and 19 deletions
  1. +4
    -1
      app/Commands/MariadbAddCommand.php
  2. +4
    -1
      app/Commands/MariadbInstallCommand.php
  3. +4
    -1
      app/Commands/MariadbRemoveCommand.php
  4. +4
    -1
      app/Commands/MonitoringStateCommand.php
  5. +4
    -1
      app/Commands/NginxInstallCommand.php
  6. +0
    -9
      app/Commands/NginxVhostsCommand.php
  7. +4
    -0
      app/Commands/PhpFpmInstallCommand.php
  8. +1
    -1
      app/Facades/Install.php
  9. +2
    -1
      app/Facades/Menus/StylesFactory.php
  10. +2
    -1
      app/Facades/NginxVhost.php
  11. +2
    -1
      app/Facades/NginxVhostFactory.php
  12. +2
    -1
      app/Facades/TerminalHelper.php

+ 4
- 1
app/Commands/MariadbAddCommand.php View File

@ -12,8 +12,11 @@ use Hackzilla\PasswordGenerator\Generator\ComputerPasswordGenerator;
use Hackzilla\PasswordGenerator\RandomGenerator\Php7RandomGenerator;
/**
* Add database
*
*
* @author Björn Hase, Tentakelfabrik
* @license http://opensource.org/licenses/MIT The MIT License
* @link https://gitea.tentakelfabrik.de/Tentakelfabrik/mcp
*
*/
class MariadbAddCommand extends Command


+ 4
- 1
app/Commands/MariadbInstallCommand.php View File

@ -12,8 +12,11 @@ use Hackzilla\PasswordGenerator\Generator\ComputerPasswordGenerator;
use Hackzilla\PasswordGenerator\RandomGenerator\Php7RandomGenerator;
/**
* Install Mariadb
*
*
* @author Björn Hase, Tentakelfabrik
* @license http://opensource.org/licenses/MIT The MIT License
* @link https://gitea.tentakelfabrik.de/Tentakelfabrik/mcp
*
*/
class MariadbInstallCommand extends Command


+ 4
- 1
app/Commands/MariadbRemoveCommand.php View File

@ -12,8 +12,11 @@ use Hackzilla\PasswordGenerator\Generator\ComputerPasswordGenerator;
use Hackzilla\PasswordGenerator\RandomGenerator\Php7RandomGenerator;
/**
* Remove database
*
*
* @author Björn Hase, Tentakelfabrik
* @license http://opensource.org/licenses/MIT The MIT License
* @link https://gitea.tentakelfabrik.de/Tentakelfabrik/mcp
*
*/
class MariadbRemoveCommand extends Command


+ 4
- 1
app/Commands/MonitoringStateCommand.php View File

@ -6,8 +6,11 @@ use Illuminate\Console\Scheduling\Schedule;
use LaravelZero\Framework\Commands\Command;
/**
*
* get count of updates and state of hardisks
*
* @author Björn Hase, Tentakelfabrik
* @license http://opensource.org/licenses/MIT The MIT License
* @link https://gitea.tentakelfabrik.de/Tentakelfabrik/mcp
*
*/
class MonitoringStateCommand extends Command


+ 4
- 1
app/Commands/NginxInstallCommand.php View File

@ -9,8 +9,11 @@ use App\Facades\Install;
use App\BladeFile;
/**
* Nginx install
* Install Nginx
*
* @author Björn Hase, Tentakelfabrik
* @license http://opensource.org/licenses/MIT The MIT License
* @link https://gitea.tentakelfabrik.de/Tentakelfabrik/mcp
*
*/
class NginxInstallCommand extends Command


+ 0
- 9
app/Commands/NginxVhostsCommand.php View File

@ -9,20 +9,11 @@ use Illuminate\Support\Facades\File;
use App\Facades\Install;
use App\Facades\NginxVhost;
use App\Facades\NginxVhostFactory;
use App\Facades\TerminalHelper;
use App\Facades\Menus\StylesFactory;
use App\Helpers\NginxTemplateHelper;
use App\Menus\Nginx\NginxVhostGoBackAction;
use App\Menus\Nginx\TemplateMenuFactory;
use PhpSchool\CliMenu\Builder\CliMenuBuilder;
use PhpSchool\CliMenu\CliMenu;
use PhpSchool\CliMenu\MenuItem\CheckboxItem;
use PhpSchool\CliMenu\Style\SelectableStyle;
use PhpSchool\CliMenu\MenuItem\MenuMenuItem;
/**
* Add and Edit Configurations of Vhosts from Nginx
*


+ 4
- 0
app/Commands/PhpFpmInstallCommand.php View File

@ -4,11 +4,15 @@ namespace App\Commands;
use Illuminate\Console\Scheduling\Schedule;
use LaravelZero\Framework\Commands\Command;
use App\Facades\Install;
/**
* Install php-fpm
*
* @author Björn Hase, Tentakelfabrik
* @license http://opensource.org/licenses/MIT The MIT License
* @link https://gitea.tentakelfabrik.de/Tentakelfabrik/mcp
*
*/
class PhpFpmInstallCommand extends Command


+ 1
- 1
app/Facades/Install.php View File

@ -5,7 +5,7 @@ namespace App\Facades;
use Illuminate\Support\Facades\Facade;
/**
* Install
*
*
* @author Björn Hase
* @license http://opensource.org/licenses/MIT The MIT License


+ 2
- 1
app/Facades/Menus/StylesFactory.php View File

@ -5,11 +5,12 @@ namespace App\Facades\Menus;
use Illuminate\Support\Facades\Facade;
/**
* Nginx
*
*
* @author Björn Hase
* @license http://opensource.org/licenses/MIT The MIT License
* @link https://github.com/nirgendswo/fuzzy-cms GitHub Repository
*
*/
class StylesFactory extends Facade
{


+ 2
- 1
app/Facades/NginxVhost.php View File

@ -5,11 +5,12 @@ namespace App\Facades;
use Illuminate\Support\Facades\Facade;
/**
* Nginx
*
*
* @author Björn Hase
* @license http://opensource.org/licenses/MIT The MIT License
* @link https://github.com/nirgendswo/fuzzy-cms GitHub Repository
*
*/
class NginxVhost extends Facade
{


+ 2
- 1
app/Facades/NginxVhostFactory.php View File

@ -5,11 +5,12 @@ namespace App\Facades;
use Illuminate\Support\Facades\Facade;
/**
* Nginx
*
*
* @author Björn Hase
* @license http://opensource.org/licenses/MIT The MIT License
* @link https://github.com/nirgendswo/fuzzy-cms GitHub Repository
*
*/
class NginxVhostFactory extends Facade
{


+ 2
- 1
app/Facades/TerminalHelper.php View File

@ -5,11 +5,12 @@ namespace App\Facades;
use Illuminate\Support\Facades\Facade;
/**
* Nginx
*
*
* @author Björn Hase
* @license http://opensource.org/licenses/MIT The MIT License
* @link https://github.com/nirgendswo/fuzzy-cms GitHub Repository
*
*/
class TerminalHelper extends Facade
{


Loading…
Cancel
Save