You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
342 B
14 lines
342 B
---
|
|
- name: check if system reboot is required
|
|
# hosts: "{{ hosts }}"
|
|
hosts: all
|
|
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
|