mirror of
https://github.com/DaanSelen/meshbook.git
synced 2026-02-20 08:22:11 +00:00
16 lines
328 B
YAML
16 lines
328 B
YAML
---
|
|
name: Refresh the apt cache
|
|
company: Temp-Agents
|
|
#device: MSI
|
|
tasks:
|
|
- name: refresh the cache
|
|
command: "apt update"
|
|
|
|
- name: display available upgrades
|
|
command: "apt list --upgradable"
|
|
|
|
- name: apply upgrades
|
|
command: "apt upgrade -y"
|
|
|
|
- name: cleanup remaining packages
|
|
command: "apt autoremove -y" |