no longer require controlmaster for interactive ssh

we only run one ssh command, so control master is not needed
This commit is contained in:
Jörg Thalheim
2025-05-27 15:38:28 +02:00
parent 7b8b23b39b
commit f3cdcef523
2 changed files with 2 additions and 3 deletions

View File

@@ -324,7 +324,7 @@ class Remote:
return nix_shell(packages, cmd)
def interactive_ssh(self) -> None:
cmd_list = self.ssh_cmd(tty=True)
cmd_list = self.ssh_cmd(tty=True, control_master=False)
subprocess.run(cmd_list)