1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

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 Matt Clay
parent d73fbaaf05
commit bac0c4595c
6 changed files with 14 additions and 14 deletions

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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