Automatic updates and security reboots.
These are meant for hosts with a public ip.
This commit is contained in:
parent
82231aa8ba
commit
1872a4edcf
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
- name: Install roles needed for exposed hosts
|
||||
hosts: all
|
||||
become: true
|
||||
roles:
|
||||
- geerlingguy.repo-epel
|
||||
- geerlingguy.security
|
||||
tasks:
|
||||
- cron:
|
||||
name: Reboot to load new kernel.
|
||||
weekday: 1
|
||||
minute: 45
|
||||
hour: 11
|
||||
user: root
|
||||
job: /bin/needs-restarting -r >/dev/null 2>&1 || /sbin/shutdown -r +60 "restarting to apply updates"
|
||||
cron_file: reboot
|
Reference in New Issue