Files
Ansible-Bootstrap/roles/environment/tasks/main.yml

16 lines
528 B
YAML

---
- name: Configure work environment
become: "{{ (hypervisor_type | default('none')) != 'vmware' }}"
block:
- name: Detect and validate live environment
ansible.builtin.include_tasks: _detect_live.yml
- name: Configure network and connectivity
ansible.builtin.include_tasks: _configure_network.yml
- name: Prepare installer environment
ansible.builtin.include_tasks: _prepare_installer.yml
- name: Run third-party preparation tasks
ansible.builtin.include_tasks: _thirdparty.yml