mirror of
https://github.com/status-im/infra-nimbus.git
synced 2025-01-11 06:15:58 +00:00
Jakub Sokołowski
a5a950bb91
See: https://github.com/status-im/nimbus-private/pull/9 Signed-off-by: Jakub Sokołowski <jakub@status.im>
14 lines
291 B
YAML
14 lines
291 B
YAML
- name: Update and upgrade apt packages
|
|
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
|