From 75b4ba7e56880ee325ccf9392a5c4ff8ba5ec8c9 Mon Sep 17 00:00:00 2001 From: Benjamin Bortels Date: Tue, 11 Sep 2018 11:02:39 +0200 Subject: [PATCH] gad --- app/Console/Commands/InstallationFinishCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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'); } } }