mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-26 01:20:30 +00:00
19 lines
411 B
PHP
19 lines
411 B
PHP
|
<?php
|
||
|
|
||
|
namespace Modules\Minecraft;
|
||
|
|
||
|
use App\ModulePostInstall;
|
||
|
|
||
|
class PostInstall extends ModulePostInstall
|
||
|
{
|
||
|
public $supportLog = true;
|
||
|
public function run()
|
||
|
{
|
||
|
$installDockerShellFile = base_path('Modules/Minecraft/shell-scripts/install-docker.sh');
|
||
|
|
||
|
shell_exec("chmod +x $installDockerShellFile");
|
||
|
shell_exec("bash $installDockerShellFile >> $this->logFile &");
|
||
|
|
||
|
}
|
||
|
}
|