From 1876c4d9df25a04d4dd95c29d1f4905f8995358f Mon Sep 17 00:00:00 2001 From: Josh Patterson Date: Mon, 10 Nov 2025 14:16:16 -0500 Subject: [PATCH] fix var name --- salt/bpf/pcap.map.jinja | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/bpf/pcap.map.jinja b/salt/bpf/pcap.map.jinja index 1b561b8d0..953b01a08 100644 --- a/salt/bpf/pcap.map.jinja +++ b/salt/bpf/pcap.map.jinja @@ -16,6 +16,6 @@ {% set PCAP_BPF_CALC = salt['cmd.run_all']('/usr/sbin/so-bpf-compile ' ~ GLOBALS.sensor.interface ~ ' ' ~ PCAPBPF|join(" "), cwd='/root') %} {% if PCAP_BPF_CALC['retcode'] == 0 %} {% set PCAP_BPF_STATUS = 1 %} - {% set STENO_BPF_COMPILED = ",\\\"--filter=" + BPF_CALC['stdout'] + "\\\"" %} + {% set STENO_BPF_COMPILED = ",\\\"--filter=" + PCAP_BPF_CALC['stdout'] + "\\\"" %} {% endif %} {% endif %}