clan-lib: Rename parse_deployment_address to parse_ssh_uri

This commit is contained in:
Qubasa
2025-06-23 15:32:35 +02:00
parent c3a631de7e
commit 046d13bd50
8 changed files with 13 additions and 15 deletions

View File

@@ -46,7 +46,7 @@ class DeployInfo:
if not host:
msg = "Hostname cannot be empty."
raise ClanError(msg)
remote = Remote.from_deployment_address(
remote = Remote.from_ssh_uri(
machine_name="clan-installer", address=host
).override(host_key_check=host_key_check)
remotes.append(remote)
@@ -59,7 +59,7 @@ class DeployInfo:
for addr in data.get("addrs", []):
if isinstance(addr, str):
remote = Remote.from_deployment_address(
remote = Remote.from_ssh_uri(
machine_name="clan-installer",
address=addr,
).override(host_key_check=host_key_check, password=password)
@@ -68,7 +68,7 @@ class DeployInfo:
msg = f"Invalid address format: {addr}"
raise ClanError(msg)
if tor_addr := data.get("tor"):
remote = Remote.from_deployment_address(
remote = Remote.from_ssh_uri(
machine_name="clan-installer",
address=tor_addr,
).override(host_key_check=host_key_check, tor_socks=True, password=password)