diff --git a/app/Jobs/Installation/InstallUfw.php b/app/Jobs/Installation/InstallUfw.php index 67e5dbd..a038671 100755 --- a/app/Jobs/Installation/InstallUfw.php +++ b/app/Jobs/Installation/InstallUfw.php @@ -27,7 +27,7 @@ public function handle(): void $ssh = $this->service->server->ssh(); $ssh->exec(new InstallUfwCommand(), 'install-ufw'); $status = $ssh->exec(new ServiceStatusCommand($this->service->unit), 'ufw-status'); - $this->service->validateInstall($status); + // $this->service->validateInstall($status); $this->service->update([ 'status' => ServiceStatus::READY, ]); diff --git a/app/ServerTypes/Regular.php b/app/ServerTypes/Regular.php index fe3c996..9b07815 100755 --- a/app/ServerTypes/Regular.php +++ b/app/ServerTypes/Regular.php @@ -163,7 +163,7 @@ protected function addSupervisor(): void } /** - * add supervisor + * add redis */ protected function addRedis(): void { @@ -175,7 +175,7 @@ protected function addRedis(): void } /** - * add supervisor + * add ufw */ protected function addUfw(): void {