Add reboot playbook

This commit is contained in:
Salt 2020-07-08 04:03:31 -05:00
parent 66e998d5a6
commit 4e100ac6df

15
reboot.yml Executable file
View File

@ -0,0 +1,15 @@
#!/usr/bin/env ansible-playbook
# vim:ft=ansible:
---
- hosts: all
serial: 1
tasks:
- name: Check for reboot-required
stat:
path: "/var/run/reboot-required"
register: s
- name: Reboot
reboot:
reboot_timeout: 300
when: s.stat.exists
become: yes