Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PR #7129/12b48aaa backport][stable-7] Adding SetSecureBoot to redfish_config #7298

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
minor_changes:
- redfish_config - adding ``SetSecureBoot`` command (https://github.com/ansible-collections/community.general/pull/7129).
19 changes: 19 additions & 0 deletions plugins/module_utils/redfish_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -3432,6 +3432,25 @@ def enable_secure_boot(self):

return self.patch_request(self.root_uri + secure_boot_url, body, check_pyld=True)

def set_secure_boot(self, secure_boot_enable):
# This function enable Secure Boot on an OOB controller

response = self.get_request(self.root_uri + self.systems_uri)
if response["ret"] is False:
return response

server_details = response["data"]
secure_boot_url = server_details["SecureBoot"]["@odata.id"]

response = self.get_request(self.root_uri + secure_boot_url)
if response["ret"] is False:
return response

body = {}
body["SecureBootEnable"] = secure_boot_enable

return self.patch_request(self.root_uri + secure_boot_url, body, check_pyld=True)

def get_hpe_thermal_config(self):
result = {}
key = "Thermal"
Expand Down
26 changes: 24 additions & 2 deletions plugins/modules/redfish_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,13 @@
default: []
elements: str
version_added: '7.3.0'
secure_boot_enable:
required: false
description:
- Setting parameter to enable or disable SecureBoot.
type: bool
default: True
version_added: '7.5.0'
author:
- "Jose Delarosa (@jose-delarosa)"
- "T S Kushal (@TSKushal)"
Expand Down Expand Up @@ -287,6 +294,15 @@
username: "{{ username }}"
password: "{{ password }}"

- name: Set SecureBoot
community.general.redfish_config:
category: Systems
command: SetSecureBoot
baseuri: "{{ baseuri }}"
username: "{{ username }}"
password: "{{ password }}"
secure_boot_enable: True

- name: Delete All Volumes
community.general.redfish_config:
category: Systems
Expand Down Expand Up @@ -314,7 +330,7 @@
# More will be added as module features are expanded
CATEGORY_COMMANDS_ALL = {
"Systems": ["SetBiosDefaultSettings", "SetBiosAttributes", "SetBootOrder",
"SetDefaultBootOrder", "EnableSecureBoot", "DeleteVolumes"],
"SetDefaultBootOrder", "EnableSecureBoot", "SetSecureBoot", "DeleteVolumes"],
"Manager": ["SetNetworkProtocols", "SetManagerNic", "SetHostInterface"],
"Sessions": ["SetSessionService"],
}
Expand Down Expand Up @@ -348,7 +364,8 @@ def main():
hostinterface_id=dict(),
sessions_config=dict(type='dict', default={}),
storage_subsystem_id=dict(type='str', default=''),
volume_ids=dict(type='list', default=[], elements='str')
volume_ids=dict(type='list', default=[], elements='str'),
secure_boot_enable=dict(type='bool', default=True)
),
required_together=[
('username', 'password'),
Expand Down Expand Up @@ -402,6 +419,9 @@ def main():
storage_subsystem_id = module.params['storage_subsystem_id']
volume_ids = module.params['volume_ids']

# Set SecureBoot options
secure_boot_enable = module.params['secure_boot_enable']

# Build root URI
root_uri = "https://" + module.params['baseuri']
rf_utils = RedfishUtils(creds, root_uri, timeout, module,
Expand Down Expand Up @@ -435,6 +455,8 @@ def main():
result = rf_utils.set_default_boot_order()
elif command == "EnableSecureBoot":
result = rf_utils.enable_secure_boot()
elif command == "SetSecureBoot":
result = rf_utils.set_secure_boot(secure_boot_enable)
elif command == "DeleteVolumes":
result = rf_utils.delete_volumes(storage_subsystem_id, volume_ids)

Expand Down