doc: network: fix syntax errors in examples (#5780)

This commit is contained in:
René Moser 2016-12-01 11:48:40 +01:00 committed by Matt Clay
commit 507559dba5
21 changed files with 98 additions and 98 deletions

View file

@ -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 = """