refactor: add update and upgrade tasks for package management in apk, apt, ipk, and rpm YAML files

This commit is contained in:
2025-09-10 08:36:50 -04:00
parent fabb7a1547
commit b050d4d2f9
5 changed files with 68 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
---
- hosts: apkhosts
tasks:
- name: Update the Package Repositories
apk:
update_cache: yes
- name: Upgrade Packages
apk:
available: yes
upgrade: yes