Merge pull request #1251 from dagwieers/hpilo_facts-fixes
Fix typo/cosmetic change
This commit is contained in:
commit
c8854a23ea
1 changed files with 2 additions and 2 deletions
|
@ -22,7 +22,7 @@ DOCUMENTATION = '''
|
||||||
---
|
---
|
||||||
author: Dag Wieers
|
author: Dag Wieers
|
||||||
module: hpilo_facts
|
module: hpilo_facts
|
||||||
short_description: Gather facts for a systel through HP iLO interface
|
short_description: Gather facts through an HP iLO interface
|
||||||
description:
|
description:
|
||||||
- This module gathers facts for a specific system using its HP iLO interface.
|
- This module gathers facts for a specific system using its HP iLO interface.
|
||||||
These facts include hardware and network related information useful
|
These facts include hardware and network related information useful
|
||||||
|
@ -98,7 +98,7 @@ warnings.simplefilter('ignore')
|
||||||
def main():
|
def main():
|
||||||
|
|
||||||
module = AnsibleModule(
|
module = AnsibleModule(
|
||||||
argument_spec=dict(
|
argument_spec = dict(
|
||||||
host = dict(required=True),
|
host = dict(required=True),
|
||||||
login = dict(default='Administrator'),
|
login = dict(default='Administrator'),
|
||||||
password = dict(default='admin'),
|
password = dict(default='admin'),
|
||||||
|
|
Loading…
Reference in a new issue