mirror of
https://github.com/status-im/infra-nimbus.git
synced 2025-01-09 21:35:54 +00:00
15 lines
303 B
YAML
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
|