This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
iac/ansible/playbooks/main-reboot-required.yml

13 lines
No EOL
318 B
YAML

---
- name: check if system reboot is required
hosts: "*"
become: yes
tasks:
- name: check if system reboot is required
become: true
stat:
path: /var/run/reboot-required
register: reboot_required
- debug:
msg: "Reboot is required"
when: reboot_required.stat.exists