Skip to content

Ansible role to gather facts about BIOS settings and RAID configuration on Dell machines with an iDRAC card

Notifications You must be signed in to change notification settings

ed-velez/drac-facts

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

DRAC Facts

Role providing a module to gather facts about BIOS settings and RAID configuration on Dell machines with an iDRAC card.

Requirements

The role provides a module, drac_facts, that is dependent upon the python-dracclient module. This must be installed in order for this module to function correctly.

Role Variables

None

Dependencies

None

Example Playbook

This role may be used as follows:

- hosts: dell-servers
  roles:
    - role: stackhpc.drac-facts
  tasks:
    - name: Gather facts via DRAC
      local_action:
        module: drac_facts
        address: 1.2.3.4
        username: foo
        password: bar

    - name: Show gathered facts about BIOS settings
      debug:
        var: drac_bios_settings

    - name: Show gathered facts about jobs
      debug:
        var: drac_jobs

    - name: Show gathered facts about unfinished jobs
      debug:
        var: drac_unfinished_jobs

    - name: Show gathered facts about RAID controllers
      debug:
        var: drac_raid_controllers

    - name: Show gathered facts about physical disks
      debug:
        var: drac_physical_disks

    - name: Show gathered facts about virtual disks
      debug:
        var: drac_virtual_disks

License

BSD

Author Information

About

Ansible role to gather facts about BIOS settings and RAID configuration on Dell machines with an iDRAC card

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%