Small ajustments.

This commit is contained in:
Joao Patricio 2023-03-31 11:26:56 +01:00
parent e129e8b347
commit 5d89df554a
2 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ function savePrivateKey(Server $server)
}
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');

View File

@ -38,7 +38,7 @@ public function run(): void
'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,
]);