From b69381adc36cf5abb572f758dc702e53478f5261 Mon Sep 17 00:00:00 2001 From: Vezpi Date: Mon, 8 Jun 2026 08:32:40 +0000 Subject: [PATCH] test: simulate update --- ansible/proxmox/update_proxmox.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ansible/proxmox/update_proxmox.yml b/ansible/proxmox/update_proxmox.yml index ae1bf88..98b9a18 100644 --- a/ansible/proxmox/update_proxmox.yml +++ b/ansible/proxmox/update_proxmox.yml @@ -60,6 +60,13 @@ check_mode: true register: apt_check + - name: Simulate update report + ansible.builtin.set_fact: + update_report: + old: "{{ pve_old_version.stdout }}" + new: "{{ pve_new_version.stdout }}" + when: "'vertex' in inventory_hostname" + - name: Proceed if updates are available when: apt_check.changed block: