ansible/reboot.yml

14 lines
290 B
YAML
Raw Normal View History

2020-12-30 16:53:57 -06:00
#!/usr/bin/env ansible-playbook
# vim:ft=ansible:
---
- hosts: db,web,game
serial: 1
tasks:
- name: check for reboot-required
stat: path=/var/run/reboot-required
register: s
- name: reboot
2020-12-30 16:56:59 -06:00
reboot: reboot_timeout=300
2020-12-30 16:53:57 -06:00
when: s.stat.exists
become: yes