Fix documentation example, missing ")"
This commit is contained in:
parent
7c52ea58f1
commit
5409ed1b28
3 changed files with 3 additions and 6 deletions
|
@ -133,7 +133,7 @@ EXAMPLES = """
|
|||
replace: block
|
||||
|
||||
- ios_config:
|
||||
commands: "{{lookup('file', 'datcenter1.txt'}}"
|
||||
commands: "{{lookup('file', 'datcenter1.txt')}}"
|
||||
parents: ['ip access-list test']
|
||||
before: ['no ip access-list test']
|
||||
replace: block
|
||||
|
@ -222,4 +222,3 @@ from ansible.module_utils.netcfg import *
|
|||
from ansible.module_utils.ios import *
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
|
||||
|
|
|
@ -119,7 +119,7 @@ EXAMPLES = """
|
|||
parents: ['interface GigabitEthernet0/0/0/0']
|
||||
|
||||
- iosxr_config:
|
||||
commands: "{{lookup('file', 'datcenter1.txt'}}"
|
||||
commands: "{{lookup('file', 'datcenter1.txt')}}"
|
||||
parents: ['ipv4 access-list test']
|
||||
before: ['no ip access-listv4 test']
|
||||
replace: block
|
||||
|
@ -211,4 +211,3 @@ from ansible.module_utils.netcfg import *
|
|||
from ansible.module_utils.iosxr import *
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
|
||||
|
|
|
@ -134,7 +134,7 @@ EXAMPLES = """
|
|||
replace: block
|
||||
|
||||
- nxos_config:
|
||||
lines: "{{lookup('file', 'datcenter1.txt'}}"
|
||||
lines: "{{lookup('file', 'datcenter1.txt')}}"
|
||||
parents: ['ip access-list test']
|
||||
before: ['no ip access-list test']
|
||||
replace: block
|
||||
|
@ -227,4 +227,3 @@ from ansible.module_utils.netcfg import *
|
|||
from ansible.module_utils.nxos import *
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
|
||||
|
|
Loading…
Reference in a new issue