From b7583f1faa6cc59a5d5805090a10598345402d66 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sun, 10 Aug 2025 14:39:36 +0000 Subject: [PATCH] core198: Create /var/run/suricata on update Signed-off-by: Michael Tremer --- config/rootfiles/core/198/update.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config/rootfiles/core/198/update.sh b/config/rootfiles/core/198/update.sh index ba5f23975..7e71fcc3c 100644 --- a/config/rootfiles/core/198/update.sh +++ b/config/rootfiles/core/198/update.sh @@ -38,6 +38,12 @@ done # Extract files extract_files +# Create /var/run/suricata +if ! [ -d "/var/run/suricata" ]; then + mkdir -p /var/run/suricata + chown suricata:suricata /var/run/suricata +fi + # update linker config ldconfig -- 2.47.3