clan-cli: Add missining propagation of host-key-check in machines.update

This commit is contained in:
Qubasa
2025-06-24 10:35:53 +02:00
parent 0dd3b498ac
commit 78fdd21610

View File

@@ -280,7 +280,9 @@ def update_command(args: argparse.Namespace) -> None:
address=args.target_host, address=args.target_host,
).override(host_key_check=host_key_check) ).override(host_key_check=host_key_check)
else: else:
target_host = machine.target_host() target_host = machine.target_host().override(
host_key_check=host_key_check
)
runtime.async_run( runtime.async_run(
AsyncOpts( AsyncOpts(
tid=machine.name, tid=machine.name,