ansitest/reboot-and-wait.yml

16 lines
248 B
YAML
Raw Normal View History

2022-04-27 13:07:00 -05:00
---
- hosts: '{{target}}'
tasks:
- name: reboot and wait
become: yes
reboot:
reboot_timeout: 600
2022-04-27 13:07:58 -05:00
- name: check uptime
2022-04-27 13:07:00 -05:00
register: uptimeoutput
command: "uptime"
- debug:
var: uptimeoutput.stdout_lines