From 78fdd21610a420f622ef4462c1765a4f4c28ae44 Mon Sep 17 00:00:00 2001 From: Qubasa Date: Tue, 24 Jun 2025 10:35:53 +0200 Subject: [PATCH] clan-cli: Add missining propagation of host-key-check in machines.update --- pkgs/clan-cli/clan_cli/machines/update.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/clan-cli/clan_cli/machines/update.py b/pkgs/clan-cli/clan_cli/machines/update.py index e278d6f94..b04643017 100644 --- a/pkgs/clan-cli/clan_cli/machines/update.py +++ b/pkgs/clan-cli/clan_cli/machines/update.py @@ -280,7 +280,9 @@ def update_command(args: argparse.Namespace) -> None: address=args.target_host, ).override(host_key_check=host_key_check) else: - target_host = machine.target_host() + target_host = machine.target_host().override( + host_key_check=host_key_check + ) runtime.async_run( AsyncOpts( tid=machine.name,