Homelab-Automation/linux-maintenance.yaml

15 lines
310 B
YAML
Raw Permalink Normal View History

2025-04-04 14:52:42 +00:00
---
- hosts: "{{ target_hosts }}"
become: true
tasks:
- name: Update apt cache
ansible.builtin.apt:
update_cache: true
- name: Upgrade all packages
ansible.builtin.apt:
upgrade: dist
autoremove: true
- name: Reboot machine
ansible.builtin.reboot: