mirror of
https://github.com/status-im/infra-les.git
synced 2025-02-12 20:36:23 +00:00
13 lines
282 B
YAML
13 lines
282 B
YAML
- name: Update and upgrade apt packages
|
|
gather_facts: false
|
|
hosts: all
|
|
tasks:
|
|
- name: Upgrade packages
|
|
apt:
|
|
upgrade: yes
|
|
update_cache: yes
|
|
cache_valid_time: 86400 #One day
|
|
- name: Remove unused packages
|
|
apt:
|
|
autoremove: yes
|