mirror of
https://github.com/kneutron/ansitest.git
synced 2025-01-16 04:42:55 +08:00
16 lines
248 B
YAML
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
|