diff --git a/app/Console/Commands/InstallationFinishCommand.php b/app/Console/Commands/InstallationFinishCommand.php index 286f65a..aa47917 100644 --- a/app/Console/Commands/InstallationFinishCommand.php +++ b/app/Console/Commands/InstallationFinishCommand.php @@ -43,7 +43,7 @@ public function handle() (new CreateDeamonTaskManager([ 'name' => 'stool-deploy', - 'command' => 'stool queue:listen --timeout=600 --sleep=3 --tries=1', + 'command' => 'stool queue:listen --timeout=600 --sleep=15 --tries=1', ]))->work(); $sEmail = $this->ask('Administrator email?'); @@ -57,7 +57,7 @@ public function handle() if ($bAddSwap) { $iSwap = (int) $this->ask('How much (in GB)?'); - echo resolve('ShellTask')->exec('bash ' . scripts_path('partials') . '/swap.sh ' . $iSwap . 'G')->getLastOutput(); + resolve('ShellTask')->exec('bash ' . scripts_path('partials') . '/swap.sh ' . $iSwap . 'G'); } } }