mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 21:00: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
|
@ -148,7 +148,7 @@ vars:
|
|||
- name: Enable eAPI access with default configuration
|
||||
eos_eapi:
|
||||
state: started
|
||||
provider: {{ cli }}
|
||||
provider: "{{ cli }}"
|
||||
|
||||
- name: Enable eAPI with no HTTP, HTTPS at port 9443, local HTTP at port 80, and socket enabled
|
||||
eos_eapi:
|
||||
|
@ -158,12 +158,12 @@ vars:
|
|||
local_http: yes
|
||||
local_http_port: 80
|
||||
socket: yes
|
||||
provider: {{ cli }}
|
||||
provider: "{{ cli }}"
|
||||
|
||||
- name: Shutdown eAPI access
|
||||
eos_eapi:
|
||||
state: stopped
|
||||
provider: {{ cli }}
|
||||
provider: "{{ cli }}"
|
||||
"""
|
||||
|
||||
RETURN = """
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue