mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-22 08:13:18 +01:00
10 lines
172 B
YAML
10 lines
172 B
YAML
---
|
|
- name: Reboot machine
|
|
hosts: "{{ my_hosts | d([]) }}"
|
|
become: true
|
|
|
|
tasks:
|
|
- name: Reboot machine
|
|
ansible.builtin.reboot:
|
|
reboot_timeout: 3600
|