mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-28 19:23:22 +01:00
13 lines
328 B
YAML
13 lines
328 B
YAML
---
|
|
- name: check if system reboot is required
|
|
hosts: "{{ 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 |