9 lines
171 B
YAML
9 lines
171 B
YAML
---
|
|
- name: Reboot machine
|
|
hosts: "{{ my_hosts | d([]) }}"
|
|
become: true
|
|
|
|
tasks:
|
|
- name: Reboot machine
|
|
ansible.builtin.reboot:
|
|
reboot_timeout: 3600 |