mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 05:42:50 +00: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:
committed by
John R Barker
parent
be09f420de
commit
acd89b3300
@@ -32,7 +32,7 @@ class iDRACConnection:
|
||||
raise ImportError("Dell EMC OMSDK library is required for this module")
|
||||
self.idrac_ip = module_params['idrac_ip']
|
||||
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']
|
||||
if not all((self.idrac_ip, self.idrac_user, self.idrac_pwd)):
|
||||
raise ValueError("hostname, username and password required")
|
||||
|
||||
Reference in New Issue
Block a user