From 527bc11d1dffea3ffda72e4ffdc1b45a00968e6c Mon Sep 17 00:00:00 2001 From: Sandwich Date: Wed, 30 Oct 2024 15:59:16 +0100 Subject: [PATCH] Change VMware boot order to boot correctly from ArchISO --- roles/virtualization/tasks/vmware.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/virtualization/tasks/vmware.yml b/roles/virtualization/tasks/vmware.yml index 52d4596..42a0c74 100644 --- a/roles/virtualization/tasks/vmware.yml +++ b/roles/virtualization/tasks/vmware.yml @@ -26,13 +26,13 @@ controller_type: sata state: present type: iso - iso_path: "{{ rhel_iso | default(omit) }}" + iso_path: "{{ boot_iso }}" - controller_number: 0 unit_number: 1 controller_type: sata state: present type: iso - iso_path: "{{ boot_iso }}" + iso_path: "{{ rhel_iso | default(omit) }}" networks: - name: "{{ vm_nif }}" vlan: "{{ vlan_name | default(omit) }}"