Merge pull request 'clan-cli: Add missining propagation of host-key-check in machines.update' (#4053) from Qubasa/clan-core:fix_host_key_check_in_update into main

Reviewed-on: https://git.clan.lol/clan/clan-core/pulls/4053
This commit is contained in:
Luis Hebendanz
2025-06-24 09:10:30 +00:00

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,