mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
add BootProgress property to redfish_info (#7626)
* add BootProgress property to redfish_info changelog update changelog wording for end users * Update changelog fragment. --------- Co-authored-by: dgeorge <dgeorge@digitalocean.com> Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
f4a87fdbcb
commit
30edafabe7
2 changed files with 3 additions and 1 deletions
|
@ -0,0 +1,2 @@
|
|||
minor_changes:
|
||||
- redfish_info - adding the ``BootProgress`` property when getting ``Systems`` info (https://github.com/ansible-collections/community.general/pull/7626).
|
|
@ -2955,7 +2955,7 @@ class RedfishUtils(object):
|
|||
result = {}
|
||||
inventory = {}
|
||||
# Get these entries, but does not fail if not found
|
||||
properties = ['Status', 'HostName', 'PowerState', 'Model', 'Manufacturer',
|
||||
properties = ['Status', 'HostName', 'PowerState', 'BootProgress', 'Model', 'Manufacturer',
|
||||
'PartNumber', 'SystemType', 'AssetTag', 'ServiceTag',
|
||||
'SerialNumber', 'SKU', 'BiosVersion', 'MemorySummary',
|
||||
'ProcessorSummary', 'TrustedModules', 'Name', 'Id']
|
||||
|
|
Loading…
Reference in a new issue