This repository has been archived on 2023-12-29. You can view files and clone it, but cannot push or open issues or pull requests.
pi-ansible/roles/os_config/tasks/reboot.yml

21 lines
446 B
YAML
Raw Normal View History

2022-12-26 00:39:55 +00:00
# vim: ft=yaml.ansible
---
- name: Check if a reboot is needed
stat:
path: /var/run/reboot-required
register: needs_reboot
- name: Reboot host
reboot:
connect_timeout: 120
when: needs_reboot.stat.exists or
(force_reboot is defined and force_reboot)
register: reboot
- name: Re-gather facts
setup:
filter:
- ansible_mounts
- ansible_swaptotal_mb
when: reboot.rebooted is defined and reboot.rebooted