mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-26 12:21:26 -07:00
Fix missing colons in network module examples (#4778)
This commit is contained in:
parent
d73fbaaf05
commit
bac0c4595c
6 changed files with 14 additions and 14 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue