Fixed doc
This commit is contained in:
parent
9aeaa70e32
commit
b375f61d2b
1 changed files with 3 additions and 3 deletions
|
@ -18,7 +18,7 @@
|
||||||
|
|
||||||
DOCUMENTATION = '''
|
DOCUMENTATION = '''
|
||||||
---
|
---
|
||||||
module: nxos_get_facts
|
module: nxos_facts
|
||||||
version_added: "2.1"
|
version_added: "2.1"
|
||||||
short_description: Gets facts about NX-OS switches
|
short_description: Gets facts about NX-OS switches
|
||||||
description:
|
description:
|
||||||
|
@ -29,7 +29,7 @@ author: Jason Edelman (@jedelman8), Gabriele Gerbino (@GGabriele)
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
# retrieve facts
|
# retrieve facts
|
||||||
- nxos_get_facts: host={{ inventory_hostname }}
|
- nxos_facts: host={{ inventory_hostname }}
|
||||||
'''
|
'''
|
||||||
|
|
||||||
RETURN = '''
|
RETURN = '''
|
||||||
|
@ -262,4 +262,4 @@ from ansible.module_utils.shell import *
|
||||||
from ansible.module_utils.netcfg import *
|
from ansible.module_utils.netcfg import *
|
||||||
from ansible.module_utils.nxos import *
|
from ansible.module_utils.nxos import *
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
main()
|
||||||
|
|
Loading…
Reference in a new issue