From 2e43c1f1141aef529e30ec0cc6b714494aa55a5b Mon Sep 17 00:00:00 2001 From: Nathan Date: Thu, 9 Jul 2026 17:25:44 -0600 Subject: [PATCH] Update SSH configuration for i9-13ks worker in both Flamenco and SheepIt launchers to use standard port 22 and simplify SSH arguments. --- unified_flamenco_launcher.ps1 | 4 ++-- unified_sheepit_launcher.ps1 | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/unified_flamenco_launcher.ps1 b/unified_flamenco_launcher.ps1 index f6e6f06..7f63c77 100644 --- a/unified_flamenco_launcher.ps1 +++ b/unified_flamenco_launcher.ps1 @@ -45,8 +45,8 @@ $workers = @( ID = 6 Name = "i9-13ks" SSHHost = "i9-13ks" - SSHPort = 22146 - SSHArgs = "-t -p 22146 i9-13ks" + SSHPort = 22 + SSHArgs = "-t i9-13ks" } ) diff --git a/unified_sheepit_launcher.ps1 b/unified_sheepit_launcher.ps1 index f6e8bdf..eccfeaf 100644 --- a/unified_sheepit_launcher.ps1 +++ b/unified_sheepit_launcher.ps1 @@ -29,7 +29,7 @@ $workers = @( @{ ID = 3; Name = "max"; SSHArgs = "-t max"; Enabled = $true }, @{ ID = 4; Name = "masterbox"; SSHArgs = "-t masterbox"; Enabled = $true }, @{ ID = 5; Name = "echo"; SSHArgs = "-t echo"; Enabled = $true }, - @{ ID = 6; Name = "i9-13ks"; SSHArgs = "-t -p 22146 i9-13ks"; Enabled = $true } + @{ ID = 6; Name = "i9-13ks"; SSHArgs = "-t i9-13ks"; Enabled = $true } ) function Get-RemoteSheepItCommand {