From 5d89df554a916622eaf5fad7132e9260e4838c74 Mon Sep 17 00:00:00 2001 From: Joao Patricio Date: Fri, 31 Mar 2023 11:26:56 +0100 Subject: [PATCH] Small ajustments. --- bootstrap/helpers.php | 2 +- database/seeders/ServerSeeder.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap/helpers.php b/bootstrap/helpers.php index b613cf109..98d63522a 100644 --- a/bootstrap/helpers.php +++ b/bootstrap/helpers.php @@ -63,7 +63,7 @@ if (!function_exists('savePrivateKey')) { } if (!function_exists('generateSshCommand')) { - function generateSshCommand(string $private_key_location, string $server_ip, string $user, string $port, string $command, bool $isMux = true) + function generateSshCommand(string $private_key_location, string $server_ip, string $user, string $port, string $command, bool $isMux = false) { $delimiter = 'EOF-COOLIFY-SSH'; Storage::disk('local')->makeDirectory('.ssh'); diff --git a/database/seeders/ServerSeeder.php b/database/seeders/ServerSeeder.php index 548856ba7..632d947d4 100644 --- a/database/seeders/ServerSeeder.php +++ b/database/seeders/ServerSeeder.php @@ -38,7 +38,7 @@ class ServerSeeder extends Seeder 'name' => "localhost", 'description' => "This is the local machine", 'user' => 'root', - 'ip' => "172.17.0.1", + 'ip' => "coolify-testing-host", 'team_id' => $root_team->id, 'private_key_id' => $private_key_1->id, ]);