kayobe/ansible/roles/drac-boot-mode
Mark Goddard 7341ced88f Fix Ansible warnings for use of until with {{ }}
As for 'when' clauses, 'until' should no longer use brackets, lest you
receive a written warning from Ansible.

TrivialFix

Change-Id: I1f10092ce283d288ae75600c4d0a450697b37c9f
2018-05-24 17:56:50 +01:00
..
defaults Add a playbook and role to set the boot mode (bios, uefi) of Dell servers 2017-04-27 13:00:34 +01:00
tasks Fix Ansible warnings for use of until with {{ }} 2018-05-24 17:56:50 +01:00
vars Add a playbook and role to set the boot mode (bios, uefi) of Dell servers 2017-04-27 13:00:34 +01:00
README.md Add a playbook and role to set the boot mode (bios, uefi) of Dell servers 2017-04-27 13:00:34 +01:00

README.md

DRAC Boot Mode

Ansible role to set the BIOS boot mode for a Dell server with a DRAC.

Requirements

None

Role Variables

drac_boot_mode: Set this to the required boot mode.

drac_retries: Number of times to attempt to perform write operations.

drac_delay: Delay between successive write operations.

Example Playbook

The following playbook sets the boot mode of a host to 'BIOS'.

---
- name: Ensure DRAC boot mode is BIOS
  hosts: dracs
  roles:
    - role: drac-boot-mode
      drac_boot_mode: bios

Author Information