Add apt upgrade w/ reboot
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-04-12 14:13:36 +02:00
parent c2601b10f1
commit 51b708a5cd
3 changed files with 29 additions and 8 deletions

View File

@ -0,0 +1,20 @@
- name: Upgrade all packages
ansible.builtin.apt:
name: "*"
state: latest
update_cache: yes
- name: Check if a reboot is needed
ansible.builtin.stat:
path: /var/run/reboot-required
get_checksum: no
register: rebootrequired
- name: Trigger reboot
ansible.builtin.reboot:
msg: "Reboot initiated by Ansible due to kernel updates"
reboot_timeout: 300
pre_reboot_delay: 0
post_reboot_delay: 30
test_command: uptime
when: rebootrequired.stat.exists