From f0ded8ac17f902962c0216c618ea775f63cb30c2 Mon Sep 17 00:00:00 2001 From: Vezpi Date: Tue, 23 Jun 2026 21:39:34 +0000 Subject: [PATCH] fix: assertion on skip_update undefined --- ansible/opnsense/update_opnsense_ha_cluster.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/opnsense/update_opnsense_ha_cluster.yml b/ansible/opnsense/update_opnsense_ha_cluster.yml index 68b9957..f6cf1b4 100644 --- a/ansible/opnsense/update_opnsense_ha_cluster.yml +++ b/ansible/opnsense/update_opnsense_ha_cluster.yml @@ -74,7 +74,7 @@ - name: "Assert" ansible.builtin.assert: that: - - firmware_status == 'update' or skip_update + - firmware_status == 'update' or skip_update | default(false) - not in_maintenance - mismatched_vips == 0 - total_vips > 0