Files
meshbook/examples/apt_update_example.yaml
2025-01-09 10:26:15 +01:00

12 lines
271 B
YAML

---
name: Refresh the apt cache
device: Cubic
variables:
- name: package_manager
value: "apt"
tasks:
- name: refresh the cache
command: "{{ package_manager }} update"
- name: display available upgrades
command: "{{ package_manager }} list --upgradable"