mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
doc: network: fix syntax errors in examples (#5780)
This commit is contained in:
parent
3f81a65e53
commit
507559dba5
21 changed files with 98 additions and 98 deletions
|
@ -54,17 +54,17 @@ EXAMPLES = '''
|
|||
- nxos_snmp_traps:
|
||||
group: lldp
|
||||
state: enabled
|
||||
host: {{ inventory_hostname }}
|
||||
username: {{ un }}
|
||||
password: {{ pwd }}
|
||||
host: "{{ inventory_hostname }}"
|
||||
username: "{{ un }}"
|
||||
password: "{{ pwd }}"
|
||||
|
||||
# ensure lldp trap is not configured
|
||||
- nxos_snmp_traps:
|
||||
group: lldp
|
||||
state: disabled
|
||||
host: {{ inventory_hostname }}
|
||||
username: {{ un }}
|
||||
password: {{ pwd }}
|
||||
host: "{{ inventory_hostname }}"
|
||||
username: "{{ un }}"
|
||||
password: "{{ pwd }}"
|
||||
'''
|
||||
|
||||
RETURN = '''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue