2
0
Files
Ansible/Maintenance/maint-reboot-required.yaml

24 lines
539 B
YAML

---
- name: Check if system reboot is required
hosts: all
become: yes
become_method: sudo
tasks:
- name: Check if a reboot is required
register: reboot
ansible.builtin.stat:
path: /var/run/reboot-required
- name: Reboot machine
command: /sbin/reboot now
poll: 0
when: reboot.stat.exists
- name: Pause for 15 seconds
ansible.builtin.pause:
seconds: 15
when: reboot.stat.exists
- name: Wait for systems to become reachable
wait_for_connection: