Commit 06688efb by Michael DeHaan

Merge pull request #1263 from dagwieers/hpilo_facts-fix

Sigh, another retypo
parents 49fc8c76 3f149e09
......@@ -106,9 +106,9 @@ def main():
)
)
host = module.params('host')
login = module.params('login')
password = module.params('password')
host = module.params.get('host')
login = module.params.get('login')
password = module.params.get('password')
match = module.params.get('match')
ilo = hpilo.Ilo(host, login=login, password=password)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment