From 316e1d6bf28da7d1090126ab11249c71fca425e3 Mon Sep 17 00:00:00 2001 From: Rasdva3 <34684695+Rasdva3@users.noreply.github.com> Date: Fri, 1 Oct 2021 15:31:04 +0300 Subject: [PATCH] Update redfish_info.py (#3485) * Update redfish_info.py * Update plugins/modules/remote_management/redfish/redfish_info.py Co-authored-by: Andrew Klychkov * Update plugins/modules/remote_management/redfish/redfish_info.py Co-authored-by: Andrew Klychkov * Update plugins/modules/remote_management/redfish/redfish_info.py Co-authored-by: Andrew Klychkov * Update plugins/modules/remote_management/redfish/redfish_info.py Co-authored-by: Andrew Klychkov * Update plugins/modules/remote_management/redfish/redfish_info.py Co-authored-by: Andrew Klychkov * Update plugins/modules/remote_management/redfish/redfish_info.py Co-authored-by: Andrew Klychkov * Update plugins/modules/remote_management/redfish/redfish_info.py * Update plugins/modules/remote_management/redfish/redfish_info.py * Update plugins/modules/remote_management/redfish/redfish_info.py Co-authored-by: Andrew Klychkov --- .../remote_management/redfish/redfish_info.py | 22 ++++++++++++++----- 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/plugins/modules/remote_management/redfish/redfish_info.py b/plugins/modules/remote_management/redfish/redfish_info.py index 49bd7c6ee3..36d4eff546 100644 --- a/plugins/modules/remote_management/redfish/redfish_info.py +++ b/plugins/modules/remote_management/redfish/redfish_info.py @@ -67,7 +67,9 @@ EXAMPLES = ''' username: "{{ username }}" password: "{{ password }}" register: result - - ansible.builtin.debug: + + - name: Print fetched information + ansible.builtin.debug: msg: "{{ result.redfish_facts.cpu.entries | to_nice_json }}" - name: Get CPU model @@ -78,7 +80,9 @@ EXAMPLES = ''' username: "{{ username }}" password: "{{ password }}" register: result - - ansible.builtin.debug: + + - name: Print fetched information + ansible.builtin.debug: msg: "{{ result.redfish_facts.cpu.entries.0.Model }}" - name: Get memory inventory @@ -108,7 +112,9 @@ EXAMPLES = ''' username: "{{ username }}" password: "{{ password }}" register: result - - ansible.builtin.debug: + + - name: Print fetched information + ansible.builtin.debug: msg: "{{ result.redfish_facts.virtual_media.entries | to_nice_json }}" - name: Get Volume Inventory @@ -119,7 +125,8 @@ EXAMPLES = ''' username: "{{ username }}" password: "{{ password }}" register: result - - ansible.builtin.debug: + - name: Print fetched information + ansible.builtin.debug: msg: "{{ result.redfish_facts.volume.entries | to_nice_json }}" - name: Get Session information @@ -130,7 +137,9 @@ EXAMPLES = ''' username: "{{ username }}" password: "{{ password }}" register: result - - ansible.builtin.debug: + + - name: Print fetched information + ansible.builtin.debug: msg: "{{ result.redfish_facts.session.entries | to_nice_json }}" - name: Get default inventory information @@ -139,7 +148,8 @@ EXAMPLES = ''' username: "{{ username }}" password: "{{ password }}" register: result - - ansible.builtin.debug: + - name: Print fetched information + ansible.builtin.debug: msg: "{{ result.redfish_facts | to_nice_json }}" - name: Get several inventories