Merge pull request #1263 from dagwieers/hpilo_facts-fix
Sigh, another retypo
This commit is contained in:
commit
5a9fc35200
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…
Reference in a new issue