ansitest/reboot-and-wait.yml
2022-04-27 13:07:58 -05:00

16 lines
248 B
YAML

---
- hosts: '{{target}}'
tasks:
- name: reboot and wait
become: yes
reboot:
reboot_timeout: 600
- name: check uptime
register: uptimeoutput
command: "uptime"
- debug:
var: uptimeoutput.stdout_lines