mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Sigh, another retypo problem
This commit is contained in:
parent
4bd17ee518
commit
3f149e09bc
1 changed files with 3 additions and 3 deletions
|
@ -106,9 +106,9 @@ def main():
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
host = module.params('host')
|
host = module.params.get('host')
|
||||||
login = module.params('login')
|
login = module.params.get('login')
|
||||||
password = module.params('password')
|
password = module.params.get('password')
|
||||||
match = module.params.get('match')
|
match = module.params.get('match')
|
||||||
|
|
||||||
ilo = hpilo.Ilo(host, login=login, password=password)
|
ilo = hpilo.Ilo(host, login=login, password=password)
|
||||||
|
|
Loading…
Add table
Reference in a new issue