From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4c1ZdS3jLSz2xh0 for ; Tue, 12 Aug 2025 15:08:28 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature ECDSA (secp384r1) server-digest SHA384 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mail01.haj.ipfire.org", Issuer "R11" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4c1ZdS3Pn1z2xFc for ; Tue, 12 Aug 2025 15:08:28 +0000 (UTC) Received: from people01.haj.ipfire.org (people01.haj.ipfire.org [172.28.1.161]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature ECDSA (secp384r1) client-digest SHA384) (Client CN "people01.haj.ipfire.org", Issuer "E5" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4c1ZdR70Q0z2M for ; Tue, 12 Aug 2025 15:08:27 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1755011307; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=OCQxoOwpBbP1ZuKLluMJw1I7mIMI8GL0wG1K0W2ustU=; b=GufvQWIICplULWZN9QDySJ/cgL04QegjLDSGFc2ZRPgCT38Yzwa8l3+GXyp7Y4lwCecj3s exhLwvQnqhbMLJAA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1755011307; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=OCQxoOwpBbP1ZuKLluMJw1I7mIMI8GL0wG1K0W2ustU=; b=cQwlhQyP32LjYpUXhXUbTFuwMBvqtvhpLpvhkaUVs+lArpIyQWn007ZRz6khkWd3prqbaZ i67A2xLwEfxIn0Pw/OrPwSCGejl9ixM39UoHBXPQAF7pr6NvzYVk3j5rFELZ/pmL67EbGS p3FUTPYgOPYBkKvHu/enOLzFnl52UYIuImZGyCVhxaLMoJDjCgXs2YHFDHLZjT+zDR+f4B A6FE4LmgiKgHqQmUDyN2665onSWQtynIGKPkGN3JlDqUkc4TB5BwYwWZqyaM8Bw7iScNUe 98QilOwZpgQ4HYiCERNS378yAe9RbSZ2K9q8ZNijJwu1HQZU6QjV2rOkA2IMvw== Received: by people01.haj.ipfire.org (Postfix, from userid 1000) id 4c1ZdR5ktCz2xHR; Tue, 12 Aug 2025 15:08:27 +0000 (UTC) To: ipfire-scm@lists.ipfire.org Subject: [git.ipfire.org] IPFire 2.x development tree branch, next, updated. b7583f1faa6cc59a5d5805090a10598345402d66 X-Git-Refname: refs/heads/next X-Git-Reftype: branch X-Git-Oldrev: 720b55a5a485d53b042bbf9c6e7e84e2d515b0bf X-Git-Newrev: b7583f1faa6cc59a5d5805090a10598345402d66 Message-Id: <4c1ZdR5ktCz2xHR@people01.haj.ipfire.org> Date: Tue, 12 Aug 2025 15:08:27 +0000 (UTC) From: Michael Tremer Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree". The branch, next has been updated via b7583f1faa6cc59a5d5805090a10598345402d66 (commit) via 82269b9647e2430a0f12fcb9a0319ba499c3bdee (commit) from 720b55a5a485d53b042bbf9c6e7e84e2d515b0bf (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit b7583f1faa6cc59a5d5805090a10598345402d66 Author: Michael Tremer Date: Sun Aug 10 14:39:36 2025 +0000 core198: Create /var/run/suricata on update Signed-off-by: Michael Tremer commit 82269b9647e2430a0f12fcb9a0319ba499c3bdee Author: Michael Tremer Date: Sun Aug 10 14:37:59 2025 +0000 cleanfs: Create /var/run/suricata on boot Signed-off-by: Michael Tremer ----------------------------------------------------------------------- Summary of changes: config/rootfiles/core/198/update.sh | 6 ++++++ src/initscripts/system/cleanfs | 4 ++++ 2 files changed, 10 insertions(+) Difference in files: 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 diff --git a/src/initscripts/system/cleanfs b/src/initscripts/system/cleanfs index af9332c49..e033c6067 100644 --- a/src/initscripts/system/cleanfs +++ b/src/initscripts/system/cleanfs @@ -107,6 +107,10 @@ case "${1}" in if [ ! -e /var/run/saslauthd ]; then mkdir -p /var/run/saslauthd fi + if ! [ -d "/var/run/suricata" ]; then + mkdir -p /var/run/suricata + chown suricata:suricata /var/run/suricata + fi if [ ! -e /var/log/vnstat ]; then mkdir -p /var/log/vnstat fi hooks/post-receive -- IPFire 2.x development tree