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

14 lines
273 B
YAML

---
- name: Reboot machine
hosts: "{{ Daily_Reboot_Hosts }}"
become: yes
become_method: sudo
tasks:
- name: Reboot machine
command: /sbin/reboot now
async: 1
poll: 0
- name: Wait for systems to become reachable
wait_for_connection: