Fix missing colons in network module examples (#4778)

This commit is contained in:
Andrew Gaffney 2016-09-10 07:46:30 -06:00 committed by John R Barker
parent 1ab343a74c
commit 0c05f0dfa4
6 changed files with 14 additions and 14 deletions

View file

@ -80,20 +80,20 @@ tasks:
- name: run show version on remote devices
dnos10_command:
commands: show version
provider "{{ cli }}"
provider: "{{ cli }}"
- name: run show version and check to see if output contains OS10
dnos10_command:
commands: show version
wait_for: result[0] contains OS10
provider "{{ cli }}"
provider: "{{ cli }}"
- name: run multiple commands on remote nodes
dnos10_command:
commands:
- show version
- show interface
provider "{{ cli }}"
provider: "{{ cli }}"
- name: run multiple commands and evaluate the output
dnos10_command:

View file

@ -91,7 +91,7 @@ vars:
- name: run show verion on remote devices
eos_command:
commands: show version
provider "{{ cli }}"
provider: "{{ cli }}"
- name: run show version and check to see if output contains Arista
eos_command:

View file

@ -94,20 +94,20 @@ tasks:
- name: run show version on remote devices
ios_command:
commands: show version
provider "{{ cli }}"
provider: "{{ cli }}"
- name: run show version and check to see if output contains IOS
ios_command:
commands: show version
wait_for: result[0] contains IOS
provider "{{ cli }}"
provider: "{{ cli }}"
- name: run multiple commands on remote nodes
ios_command:
commands:
- show version
- show interfaces
provider "{{ cli }}"
provider: "{{ cli }}"
- name: run multiple commands and evaluate the output
ios_command:

View file

@ -93,20 +93,20 @@ tasks:
- name: run show version on remote devices
iosxr_command:
commands: show version
provider "{{ cli }}"
provider: "{{ cli }}"
- name: run show version and check to see if output contains iosxr
iosxr_command:
commands: show version
wait_for: result[0] contains IOS-XR
provider "{{ cli }}"
provider: "{{ cli }}"
- name: run multiple commands on remote nodes
iosxr_command:
commands:
- show version
- show interfaces
provider "{{ cli }}"
provider: "{{ cli }}"
- name: run multiple commands and evaluate the output
iosxr_command:

View file

@ -96,7 +96,7 @@ vars:
- name: run show verion on remote devices
nxos_command:
commands: show version
provider "{{ cli }}"
provider: "{{ cli }}"
- name: run show version and check to see if output contains Cisco
nxos_command:

View file

@ -92,20 +92,20 @@ tasks:
- name: run show version on remote devices
sros_command:
commands: show version
provider "{{ cli }}"
provider: "{{ cli }}"
- name: run show version and check to see if output contains sros
sros_command:
commands: show version
wait_for: result[0] contains sros
provider "{{ cli }}"
provider: "{{ cli }}"
- name: run multiple commands on remote nodes
sros_command:
commands:
- show version
- show port detail
provider "{{ cli }}"
provider: "{{ cli }}"
- name: run multiple commands and evaluate the output
sros_command: