Users Guide
Table Of Contents
- Dell EMC OpenManage Ansible Modules Version 3.0.0 User’s Guide
- Overview
- Getting Started
- Modules for iDRAC
- How OpenManage Ansible Modules work with iDRAC
- Running your first iDRAC Playbook
- Updating Firmware
- Configuring PowerEdge Servers
- Deploying operating system
- Server Inventory
- Server administration tasks
- Storage controller
- Modules for OpenManage Enterprise (OME)
- Modules for Redfish APIs
- Deprecated modules
- Deprecated iDRAC modules
- Install firmware
- View Lifecycle Controller status
- Export or Import Server Configuration Profile
- Configure time zone and NTP on iDRAC
- Configure iDRAC network
- Configure BIOS
- Configure iDRAC users
- Configure RAID
- Configure syslog
- Boot to a network ISO image
- Reset iDRAC
- View Lifecycle controller job status
- Export LC logs
- Delete LC job
- Delete LC job queue
- Deprecated OpenManage Enterprise (OME) modules
- Deprecated iDRAC modules
- Accessing documents from the Dell EMC support site
Return Values
msg:
type: str
description: Overall baseline information.
returned: on error
sample: "Successfully fetched firmware baseline information."
baseline_info:
type: dict
description: Details of the baselines.
returned: success
sample: {
"@odata.id": "/api/UpdateService/Baselines(239)",
"@odata.type": "#UpdateService.Baselines",
"CatalogId": 22,
"ComplianceSummary": {
"ComplianceStatus": "CRITICAL",
"NumberOfCritical": 1,
"NumberOfDowngrade": 0,
"NumberOfNormal": 0,
"NumberOfWarning": 0
},
"Description": "baseline_description",
"DeviceComplianceReports@odata.navigationLink": "/api/UpdateService/
Baselines(239)/DeviceComplianceReports",
"DowngradeEnabled": true,
"Id": 239,
"Is64Bit": true,
"LastRun": "2020-05-22 16:42:40.307",
"Name": "baseline_name",
"RepositoryId": 12,
"RepositoryName": "HTTP DELL",
"RepositoryType": "DELL_ONLINE",
"Targets": [
{
"Id": 10342,
"Type": {
"Id": 1000,
"Name": "DEVICE"
}
}
],
"TaskId": 41415,
"TaskStatusId": 2060
}
Examples
- name: Retrieve details of all the available firmware baselines.
ome_firmware_baseline_info:
hostname: "192.168.0.1"
username: "username"
password: "password"
- name: Retrieve details of a specific firmware baseline identified by its baseline name.
ome_firmware_baseline_info:
hostname: "192.168.0.1"
username: "username"
password: "password"
baseline_name: "baseline_name"
Retrieve firmware baseline compliance details
Module: ome_firmware_baseline_compliance_info
Synopsis
This module allows to retrieve firmware compliance for a list of devices, or against a specified baseline.
Options
Modules for OpenManage Enterprise (OME)
71