From 41522e721bedf15230c3c95e2ebd3492b1958808 Mon Sep 17 00:00:00 2001 From: dgeorge Date: Tue, 28 Nov 2023 22:42:01 -0500 Subject: [PATCH 1/2] add BootProgress property to redfish_info changelog update changelog wording for end users --- .../fragments/7626-redfish-info-add-boot-progress-property.yml | 2 ++ plugins/module_utils/redfish_utils.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 changelogs/fragments/7626-redfish-info-add-boot-progress-property.yml diff --git a/changelogs/fragments/7626-redfish-info-add-boot-progress-property.yml b/changelogs/fragments/7626-redfish-info-add-boot-progress-property.yml new file mode 100644 index 00000000000..8706b1918e8 --- /dev/null +++ b/changelogs/fragments/7626-redfish-info-add-boot-progress-property.yml @@ -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) diff --git a/plugins/module_utils/redfish_utils.py b/plugins/module_utils/redfish_utils.py index a4fc5912c4f..dadf12c33b2 100644 --- a/plugins/module_utils/redfish_utils.py +++ b/plugins/module_utils/redfish_utils.py @@ -2955,7 +2955,7 @@ def get_system_inventory(self, systems_uri): 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'] From 2ee5fad4909f53b1304b9f2dc86aea0743f7db10 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Sat, 2 Dec 2023 09:32:50 +0100 Subject: [PATCH 2/2] Update changelog fragment. --- .../fragments/7626-redfish-info-add-boot-progress-property.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelogs/fragments/7626-redfish-info-add-boot-progress-property.yml b/changelogs/fragments/7626-redfish-info-add-boot-progress-property.yml index 8706b1918e8..919383686bf 100644 --- a/changelogs/fragments/7626-redfish-info-add-boot-progress-property.yml +++ b/changelogs/fragments/7626-redfish-info-add-boot-progress-property.yml @@ -1,2 +1,2 @@ minor_changes: - - redfish_info - adding the BootProgress property when getting Systems info (https://github.com/ansible-collections/community.general/pull/7626) + - redfish_info - adding the ``BootProgress`` property when getting ``Systems`` info (https://github.com/ansible-collections/community.general/pull/7626).