From bf49c6781e727b7728325c49d80c7352b2d90617 Mon Sep 17 00:00:00 2001 From: Rich Megginson Date: Wed, 29 Apr 2026 08:40:16 -0600 Subject: [PATCH] fix: firewall - use runtime instead of deprecated immediate Cause: The parameter "immediate" has been deprecated. Consequence: The firewall role gives an error about deprecated parameter. Fix: Use "runtime" instead of "immediate". Result: The firewall role does not give an error. Signed-off-by: Rich Megginson --- tasks/tangd-custom-port.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/tangd-custom-port.yml b/tasks/tangd-custom-port.yml index 13ffbfaf..98feb5bf 100644 --- a/tasks/tangd-custom-port.yml +++ b/tasks/tangd-custom-port.yml @@ -66,6 +66,6 @@ - port: "{{ nbde_server_port }}/tcp" zone: "{{ nbde_server_firewall_zone }}" state: enabled - immediate: true + runtime: "{{ __nbde_server_is_booted }}" permanent: true when: nbde_server_manage_firewall | bool