8be12b71d7
include is marked as deprecated since ansible 2.4[0] Switch to include_tasks or import_playbook as necessary [0] https://docs.ansible.com/ansible/2.4/include_module.html#deprecated Change-Id: Ia1b826ca08ae042eec80f8c495ab030a087d97ba
16 lines
456 B
YAML
16 lines
456 B
YAML
---
|
|
# Set the boot mode (BIOS, UEFI) of Dell baremetal compute nodes.
|
|
|
|
# Add Dell baremetal compute nodes to the Ansible inventory.
|
|
- import_playbook: dell-compute-node-inventory.yml
|
|
|
|
- name: Ensure Dell baremetal compute nodes boot mode is set
|
|
hosts: baremetal-compute
|
|
gather_facts: no
|
|
vars:
|
|
# Set this to the required boot mode. One of 'bios' or 'uefi'.
|
|
drac_boot_mode: "bios"
|
|
roles:
|
|
- role: ssh-known-host
|
|
- role: drac-boot-mode
|