mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
as per IRC Core team comment, renaming pwd to password (#55033)
ie idrac_pwd to idrac_password share_pwd to share_password
This commit is contained in:
parent
be09f420de
commit
acd89b3300
2 changed files with 8 additions and 8 deletions
|
@ -32,7 +32,7 @@ class iDRACConnection:
|
||||||
raise ImportError("Dell EMC OMSDK library is required for this module")
|
raise ImportError("Dell EMC OMSDK library is required for this module")
|
||||||
self.idrac_ip = module_params['idrac_ip']
|
self.idrac_ip = module_params['idrac_ip']
|
||||||
self.idrac_user = module_params['idrac_user']
|
self.idrac_user = module_params['idrac_user']
|
||||||
self.idrac_pwd = module_params['idrac_pwd']
|
self.idrac_pwd = module_params['idrac_password']
|
||||||
self.idrac_port = module_params['idrac_port']
|
self.idrac_port = module_params['idrac_port']
|
||||||
if not all((self.idrac_ip, self.idrac_user, self.idrac_pwd)):
|
if not all((self.idrac_ip, self.idrac_user, self.idrac_pwd)):
|
||||||
raise ValueError("hostname, username and password required")
|
raise ValueError("hostname, username and password required")
|
||||||
|
|
|
@ -39,7 +39,7 @@ options:
|
||||||
description: iDRAC username.
|
description: iDRAC username.
|
||||||
type: str
|
type: str
|
||||||
required: True
|
required: True
|
||||||
idrac_pwd:
|
idrac_password:
|
||||||
description: iDRAC user password.
|
description: iDRAC user password.
|
||||||
type: str
|
type: str
|
||||||
required: True
|
required: True
|
||||||
|
@ -55,7 +55,7 @@ options:
|
||||||
description: Network share user in the format 'user@domain' or 'domain\\user' if user is
|
description: Network share user in the format 'user@domain' or 'domain\\user' if user is
|
||||||
part of a domain else 'user'. This option is mandatory for CIFS Network Share.
|
part of a domain else 'user'. This option is mandatory for CIFS Network Share.
|
||||||
type: str
|
type: str
|
||||||
share_pwd:
|
share_password:
|
||||||
description: Network share user password. This option is mandatory for CIFS Network Share.
|
description: Network share user password. This option is mandatory for CIFS Network Share.
|
||||||
type: str
|
type: str
|
||||||
share_mnt:
|
share_mnt:
|
||||||
|
@ -89,10 +89,10 @@ EXAMPLES = """
|
||||||
idrac_firmware:
|
idrac_firmware:
|
||||||
idrac_ip: "192.168.0.1"
|
idrac_ip: "192.168.0.1"
|
||||||
idrac_user: "user_name"
|
idrac_user: "user_name"
|
||||||
idrac_pwd: "user_pwd"
|
idrac_password: "user_password"
|
||||||
share_name: "192.168.0.0:/share"
|
share_name: "192.168.0.0:/share"
|
||||||
share_user: "share_user_name"
|
share_user: "share_user_name"
|
||||||
share_pwd: "share_user_pwd"
|
share_password: "share_user_pwd"
|
||||||
share_mnt: "/mnt/share"
|
share_mnt: "/mnt/share"
|
||||||
reboot: True
|
reboot: True
|
||||||
job_wait: True
|
job_wait: True
|
||||||
|
@ -152,7 +152,7 @@ def update_firmware(idrac, module):
|
||||||
isFolder=False,
|
isFolder=False,
|
||||||
creds=UserCredentials(
|
creds=UserCredentials(
|
||||||
module.params['share_user'],
|
module.params['share_user'],
|
||||||
module.params['share_pwd'])
|
module.params['share_password'])
|
||||||
)
|
)
|
||||||
|
|
||||||
idrac.use_redfish = True
|
idrac.use_redfish = True
|
||||||
|
@ -181,12 +181,12 @@ def main():
|
||||||
argument_spec={
|
argument_spec={
|
||||||
"idrac_ip": {"required": True, "type": 'str'},
|
"idrac_ip": {"required": True, "type": 'str'},
|
||||||
"idrac_user": {"required": True, "type": 'str'},
|
"idrac_user": {"required": True, "type": 'str'},
|
||||||
"idrac_pwd": {"required": True, "type": 'str', "no_log": True},
|
"idrac_password": {"required": True, "type": 'str', "no_log": True},
|
||||||
"idrac_port": {"required": False, "default": 443, "type": 'int'},
|
"idrac_port": {"required": False, "default": 443, "type": 'int'},
|
||||||
|
|
||||||
"share_name": {"required": True, "type": 'str'},
|
"share_name": {"required": True, "type": 'str'},
|
||||||
"share_user": {"required": False, "type": 'str'},
|
"share_user": {"required": False, "type": 'str'},
|
||||||
"share_pwd": {"required": False, "type": 'str', "no_log": True},
|
"share_password": {"required": False, "type": 'str', "no_log": True},
|
||||||
"share_mnt": {"required": True, "type": 'str'},
|
"share_mnt": {"required": True, "type": 'str'},
|
||||||
|
|
||||||
"catalog_file_name": {"required": False, "type": 'str', "default": "Catalog.xml"},
|
"catalog_file_name": {"required": False, "type": 'str', "default": "Catalog.xml"},
|
||||||
|
|
Loading…
Reference in a new issue