feat(cleanup): gate RHEL ISO disk and fstab handling on rhel_repo.source
This commit is contained in:
@@ -13,7 +13,6 @@
|
|||||||
api_user: "{{ hypervisor_cfg.username }}"
|
api_user: "{{ hypervisor_cfg.username }}"
|
||||||
api_password: "{{ hypervisor_cfg.password }}"
|
api_password: "{{ hypervisor_cfg.password }}"
|
||||||
node: "{{ hypervisor_cfg.host }}"
|
node: "{{ hypervisor_cfg.host }}"
|
||||||
no_log: true
|
|
||||||
block:
|
block:
|
||||||
- name: Cleanup Setup Disks
|
- name: Cleanup Setup Disks
|
||||||
community.proxmox.proxmox_disk:
|
community.proxmox.proxmox_disk:
|
||||||
@@ -21,10 +20,13 @@
|
|||||||
vmid: "{{ system_cfg.id }}"
|
vmid: "{{ system_cfg.id }}"
|
||||||
disk: "{{ item }}"
|
disk: "{{ item }}"
|
||||||
state: absent
|
state: absent
|
||||||
loop:
|
loop: >-
|
||||||
- ide0
|
{{
|
||||||
- ide2
|
['ide0', 'ide2']
|
||||||
|
+ (['ide1'] if not (os == 'rhel' and system_cfg.features.rhel_repo.source == 'iso') else [])
|
||||||
|
}}
|
||||||
failed_when: false
|
failed_when: false
|
||||||
|
no_log: true
|
||||||
|
|
||||||
- name: Start the VM
|
- name: Start the VM
|
||||||
community.proxmox.proxmox_kvm:
|
community.proxmox.proxmox_kvm:
|
||||||
|
|||||||
@@ -44,7 +44,8 @@
|
|||||||
'state': 'absent'
|
'state': 'absent'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
if rhel_iso is defined and rhel_iso | length > 0
|
if (rhel_iso is defined and rhel_iso | length > 0
|
||||||
|
and not (os == 'rhel' and system_cfg.features.rhel_repo.source == 'iso'))
|
||||||
else []
|
else []
|
||||||
)
|
)
|
||||||
}}
|
}}
|
||||||
|
|||||||
@@ -23,8 +23,19 @@
|
|||||||
regexp: "(xfs.*?)(attr2)"
|
regexp: "(xfs.*?)(attr2)"
|
||||||
replace: "\\1allocsize=64m"
|
replace: "\\1allocsize=64m"
|
||||||
|
|
||||||
|
- name: Remove RHEL ISO fstab entry when not using local repo
|
||||||
|
when:
|
||||||
|
- os == "rhel"
|
||||||
|
- system_cfg.features.rhel_repo.source != "iso"
|
||||||
|
ansible.builtin.lineinfile:
|
||||||
|
path: /mnt/etc/fstab
|
||||||
|
regexp: "^.*\\/dvd.*$"
|
||||||
|
state: absent
|
||||||
|
|
||||||
- name: Replace ISO UUID entry with /dev/sr0 in fstab
|
- name: Replace ISO UUID entry with /dev/sr0 in fstab
|
||||||
when: os == "rhel"
|
when:
|
||||||
|
- os == "rhel"
|
||||||
|
- system_cfg.features.rhel_repo.source == "iso"
|
||||||
vars:
|
vars:
|
||||||
configuration_fstab_dvd_line: >-
|
configuration_fstab_dvd_line: >-
|
||||||
{{
|
{{
|
||||||
@@ -39,7 +50,10 @@
|
|||||||
state: present
|
state: present
|
||||||
|
|
||||||
- name: Write image from RHEL ISO to the target machine
|
- name: Write image from RHEL ISO to the target machine
|
||||||
when: os == "rhel" and hypervisor_type == 'vmware'
|
when:
|
||||||
|
- os == "rhel"
|
||||||
|
- hypervisor_type == "vmware"
|
||||||
|
- system_cfg.features.rhel_repo.source == "iso"
|
||||||
ansible.builtin.command:
|
ansible.builtin.command:
|
||||||
argv:
|
argv:
|
||||||
- dd
|
- dd
|
||||||
|
|||||||
Reference in New Issue
Block a user