rename machine.host to machine.target_host

This commit is contained in:
Jörg Thalheim
2024-02-06 15:55:34 +01:00
parent 6e57122da8
commit 2315dba2a9
8 changed files with 11 additions and 11 deletions

View File

@@ -182,7 +182,7 @@ def get_selected_machines(machine_names: list[str], flake_dir: Path) -> HostGrou
hosts = []
for name in machine_names:
machine = Machine(name=name, flake=flake_dir)
hosts.append(machine.host)
hosts.append(machine.target_host)
return HostGroup(hosts)