1 2 3 4 5 6 7 8 9 10 11 12 13
- name: Upgrade all proxmox hosts hosts: pve become: true gather_facts: true tasks: - name: Update all packages to their latest version ansible.builtin.apt: name: "*" state: latest autoremove: yes purge: true clean: yes update_cache: true