Skip to content

Commit

Permalink
Add missing scp_component options to idrac_server_config_profile
Browse files Browse the repository at this point in the history
depends on dell/omsdk#23

Signed-off-by: Klaas Demter <[email protected]>
  • Loading branch information
Klaas- committed Nov 27, 2021
1 parent c570cf6 commit 3ce3ca3
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions plugins/modules/idrac_server_config_profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,11 @@
- If C(BIOS), this module exports or imports BIOS configuration from SCP file.
- If C(NIC), this module exports or imports NIC configuration from SCP file.
- If C(RAID), this module exports or imports RAID configuration from SCP file.
- If C(EVENTFILTERS), this module exports or imports EVENTFILTERS configuration from SCP file.
- If C(SUPPORTASSIST), this module exports or imports SUPPORTASSIST configuration from SCP file.
- If C(LIFECYCLECONTROLLER), this module exports or imports LIFECYCLECONTROLLER configuration from SCP file.
type: str
choices: ['ALL', 'IDRAC', 'BIOS', 'NIC', 'RAID']
choices: ['ALL', 'IDRAC', 'BIOS', 'NIC', 'RAID', 'EVENTFILTERS', 'SUPPORTASSIST', 'LIFECYCLECONTROLLER']
default: 'ALL'
shutdown_type:
description:
Expand Down Expand Up @@ -451,7 +454,7 @@ def main():
"share_password": {"required": False, "type": 'str',
"aliases": ['share_pwd'], "no_log": True},
"scp_components": {"required": False,
"choices": ['ALL', 'IDRAC', 'BIOS', 'NIC', 'RAID'],
"choices": ['ALL', 'IDRAC', 'BIOS', 'NIC', 'RAID', 'EVENTFILTERS', 'SUPPORTASSIST', 'LIFECYCLECONTROLLER'],
"default": 'ALL'},

"scp_file": {"required": False, "type": 'str'},
Expand Down

0 comments on commit 3ce3ca3

Please sign in to comment.