From a3478d8cc7622ed03d46b204a0da1d418645cdfa Mon Sep 17 00:00:00 2001 From: Qubasa Date: Tue, 17 Jun 2025 16:24:00 +0200 Subject: [PATCH] clan-lib: Set "root" as default user in Remote object --- pkgs/clan-cli/clan_lib/ssh/remote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/clan-cli/clan_lib/ssh/remote.py b/pkgs/clan-cli/clan_lib/ssh/remote.py index fae1e9473..f810310ed 100644 --- a/pkgs/clan-cli/clan_lib/ssh/remote.py +++ b/pkgs/clan-cli/clan_lib/ssh/remote.py @@ -31,8 +31,8 @@ NO_OUTPUT_TIMEOUT = 20 @dataclass(frozen=True) class Remote: address: str - user: str command_prefix: str + user: str = "root" port: int | None = None private_key: Path | None = None password: str | None = None