diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/vm-install.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common/vm-install.yml b/common/vm-install.yml index 4c33bcc4..b0c3815a 100644 --- a/common/vm-install.yml +++ b/common/vm-install.yml @@ -11,15 +11,15 @@ - name: check if the host system belongs to the kvmhosts group fail: - msg: "the host '{{ install_cooked.vm.host }}' does not belong to the group 'kvmhosts'" + msg: "the host '{{ vm_host_cooked.name }}' does not belong to the group 'kvmhosts'" when: - - "'kvmhosts' not in hostvars[install_cooked.vm.host].group_names" + - "'kvmhosts' not in hostvars[vm_host_cooked.name].group_names" # TODO: add some more sanity checks - name: create temporary host group for vm host add_host: - name: "{{ install_cooked.vm.host }}" + name: "{{ vm_host_cooked.name }}" inventory_dir: "{{ inventory_dir }}" group: _vmhost_ |