Remove reboot scripts

Shouldn't be required anymore
This commit is contained in:
Salt 2022-06-23 16:37:18 -05:00
parent 18063e2a86
commit 7eb5dafe76
2 changed files with 0 additions and 26 deletions

View File

@ -1,13 +0,0 @@
#!/usr/bin/env ansible-playbook
# vim:ft=ansible:
---
- hosts: manufacturers_raspi
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

View File

@ -1,13 +0,0 @@
#!/usr/bin/env ansible-playbook
# vim:ft=ansible:
---
- hosts: tags_prod
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