Homelab-Automation/linux-update.yaml
2025-04-03 19:35:19 +02:00

13 lines
No EOL
273 B
YAML

---
- hosts: docker_servers
become: true
become_user: stackautomation
tasks:
- name: Update apt cache
ansible.builtin.apt:
update_cache: true
- name: Upgrade all packages
ansible.builtin.apt:
upgrade: dist
autoremove: true