mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
324 B
YAML
20 lines
324 B
YAML
5 years ago
|
---
|
||
|
- block:
|
||
|
- cli_command:
|
||
|
command: reload
|
||
|
prompt:
|
||
|
- "yes/no"
|
||
|
- "confirm"
|
||
|
answer:
|
||
|
- "no"
|
||
|
- "y"
|
||
|
check_all: yes
|
||
|
|
||
|
- wait_for_connection:
|
||
|
delay: 20
|
||
|
sleep: 10
|
||
|
|
||
|
- cli_command:
|
||
|
command: show version
|
||
|
when: ansible_connection.endswith("network_cli")
|