Homelab-Automation/linux-update.yaml

14 lines
286 B
YAML
Raw Normal View History

2025-04-03 16:57:45 +00:00
---
- hosts: "{{ target_hosts }}"
become: true
tasks:
- name: Update apt cache
ansible.builtin.apt:
update_cache: true
2025-04-03 17:08:20 +00:00
become: true
2025-04-03 16:57:45 +00:00
- name: Upgrade all packages
ansible.builtin.apt:
upgrade: dist
2025-04-03 17:08:20 +00:00
autoremove: true
become: true