From fd825f7e87441e897faacf51b34494ce3b650684 Mon Sep 17 00:00:00 2001 From: furtest Date: Fri, 23 Jan 2026 17:29:40 +0100 Subject: [PATCH] synchroniser : use -S to avoid login in We create a master ssh connection the -S flag uses this to avoid having to log in again. --- src/unisync/synchroniser.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/unisync/synchroniser.py b/src/unisync/synchroniser.py index 7d0e912..e75ec46 100644 --- a/src/unisync/synchroniser.py +++ b/src/unisync/synchroniser.py @@ -217,6 +217,7 @@ class Synchroniser: command.append(value) sshargs = f"-p {self.remote_port} " + sshargs += f"-S {self.control_path} " for arg, value in self.ssh_settings.items(): sshargs += arg + " " + value + " " command.append("-sshargs")