From f6c1566924d044f17a3ed3a7033fa8c49ea159b9 Mon Sep 17 00:00:00 2001 From: "patchback[bot]" <45432694+patchback[bot]@users.noreply.github.com> Date: Sat, 13 Nov 2021 14:58:49 +0100 Subject: [PATCH] Example command has wrong arg in redfish_command (#3711) (#3721) Example command arg `boot_next` missing the underscore (cherry picked from commit 4fe5d54b9e3ecf81bc5003723f761995c6f30bd5) Co-authored-by: bluikko <14869000+bluikko@users.noreply.github.com> --- plugins/modules/remote_management/redfish/redfish_command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/modules/remote_management/redfish/redfish_command.py b/plugins/modules/remote_management/redfish/redfish_command.py index 8702e468ca..5437a79891 100644 --- a/plugins/modules/remote_management/redfish/redfish_command.py +++ b/plugins/modules/remote_management/redfish/redfish_command.py @@ -307,7 +307,7 @@ EXAMPLES = ''' community.general.redfish_command: category: Systems command: SetOneTimeBoot - bootnext: BiosSetup + boot_next: BiosSetup boot_override_mode: Legacy baseuri: "{{ baseuri }}" username: "{{ username }}"