mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 13:20:23 -07:00
updates examples and documentation (#24211)
includes better examples of valid and invalid usage of the lines argument fixes #22828
This commit is contained in:
parent
d8b005ec65
commit
145895dcf0
1 changed files with 19 additions and 1 deletions
|
@ -33,7 +33,8 @@ options:
|
||||||
section. The commands must be the exact same commands as found
|
section. The commands must be the exact same commands as found
|
||||||
in the device running-config. Be sure to note the configuration
|
in the device running-config. Be sure to note the configuration
|
||||||
command syntax as some commands are automatically modified by the
|
command syntax as some commands are automatically modified by the
|
||||||
device config parser.
|
device config parser. The I(lines) argument only supports current
|
||||||
|
context lines. See EXAMPLES
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
aliases: ['commands']
|
aliases: ['commands']
|
||||||
|
@ -189,6 +190,23 @@ vars:
|
||||||
src: "{{ inventory_hostname }}.cfg"
|
src: "{{ inventory_hostname }}.cfg"
|
||||||
provider: "{{ cli }}"
|
provider: "{{ cli }}"
|
||||||
save: yes
|
save: yes
|
||||||
|
|
||||||
|
- name: invalid use of lines
|
||||||
|
sros_config:
|
||||||
|
lines:
|
||||||
|
- service
|
||||||
|
- vpls 1000 customer foo 1 create
|
||||||
|
- description "invalid lines example"
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
|
||||||
|
- name: valid use of lines
|
||||||
|
sros_config:
|
||||||
|
lines:
|
||||||
|
- description "invalid lines example"
|
||||||
|
parents:
|
||||||
|
- service
|
||||||
|
- vpls 1000 customer foo 1 create
|
||||||
|
provider: "{{ cli }}"
|
||||||
"""
|
"""
|
||||||
|
|
||||||
RETURN = """
|
RETURN = """
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue