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

15 lines
308 B
YAML

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