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

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: