summaryrefslogtreecommitdiff
path: root/host-upgrade.yml
blob: e16be4386849051d55d7efe9e297139387caece4 (plain)
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