infra-nimbus/ansible/upgrade.yml
Jakub Sokołowski b3da28aeb8
requirements: bump bootstrap to fix journald config
Signed-off-by: Jakub Sokołowski <jakub@status.im>
2022-02-01 12:58:13 +01:00

15 lines
303 B
YAML

- name: Update and upgrade apt packages
serial: 1
become: true
gather_facts: false
hosts: all
tasks:
- name: Upgrade packages
apt:
upgrade: true
update_cache: true
cache_valid_time: 86400
- name: Remove unused packages
apt:
autoremove: true