From 35d688133604b8eb42b67394d5e8f5bd830ea614 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Wed, 3 May 2023 14:24:23 +0200 Subject: [PATCH] enable mux by default --- bootstrap/helpers.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap/helpers.php b/bootstrap/helpers.php index f4ece52b0..a625ea133 100644 --- a/bootstrap/helpers.php +++ b/bootstrap/helpers.php @@ -67,7 +67,7 @@ if (!function_exists('savePrivateKeyForServer')) { } if (!function_exists('generateSshCommand')) { - function generateSshCommand(string $private_key_location, string $server_ip, string $user, string $port, string $command, bool $isMux = false) + function generateSshCommand(string $private_key_location, string $server_ip, string $user, string $port, string $command, bool $isMux = true) { $delimiter = 'EOF-COOLIFY-SSH'; Storage::disk('local')->makeDirectory('.ssh');