2
0
Files
Ansible/Maintenance/maint-reboot.yaml
2024-06-06 18:22:52 +02:00

11 lines
232 B
YAML

---
- name: Reboot machine
hosts: "{{ Daily_Reboot_Hosts }}"
become: yes
tasks:
- name: Reboot machine
become: yes
ansible.builtin.reboot:
reboot_timeout: 3600
msg: "Automatic reboot initiated"