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

10 lines
215 B
YAML

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