mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
27 lines
673 B
YAML
27 lines
673 B
YAML
|
---
|
||
|
- debug: msg="START connection={{ ansible_connection }} nxos_reboot sanity test"
|
||
|
- debug: msg="Using provider={{ connection.transport }}"
|
||
|
when: ansible_connection == "local"
|
||
|
|
||
|
- debug: msg="***WARNING*** Remove meta end_play to verify this module ***WARNING***"
|
||
|
|
||
|
- meta: end_play
|
||
|
|
||
|
- block:
|
||
|
- name: Reboot Switch
|
||
|
nxos_reboot:
|
||
|
confirm: True
|
||
|
provider: "{{ connection }}"
|
||
|
ignore_errors: yes
|
||
|
|
||
|
always:
|
||
|
- name: Wait for device to come back up
|
||
|
wait_for:
|
||
|
port: 22
|
||
|
state: started
|
||
|
timeout: 600
|
||
|
delay: 60
|
||
|
host: "{{ inventory_hostname }}"
|
||
|
|
||
|
- debug: msg="END connection={{ ansible_connection }} nxos_reboot sanity test"
|