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 4gK4b11bvlz2xXs for ; Mon, 18 May 2026 17:30:53 +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 raw public key) server-digest SHA384 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4gK4b11BF3z2xPV for ; Mon, 18 May 2026 17:30:53 +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 bit raw public key) server-digest SHA256 client-signature ECDSA (secp384r1) client-digest SHA384) (Client CN "people01.haj.ipfire.org", Issuer "E8" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4gK4Zz5S9Pz1lb for ; Mon, 18 May 2026 17:30:51 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1779125451; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=Pd3+uAlsrZSVSZsG37v7m4/e09QOFkhPUxVw0CyRHy4=; b=7RPhnUiDbfTKmtQ6WnHuVUEu9r+gN8C/zotwuWw4CTq4OeyZsqfjHPbHs3HpmmTtxc5sb4 I1+bOpGY+dUkJfBA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1779125451; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=Pd3+uAlsrZSVSZsG37v7m4/e09QOFkhPUxVw0CyRHy4=; b=W5WfZQTY2g8jAlP9t+J2ymCZPTX2ZAWTvL5OynqSvQI2v3jxuVqPXnhUtBuSOQwFUb0N9c jaIstGGoiI90MBSulAKlcepaiVfD/wLr9x7h3hpzE8TGXiJFCl4nIk5udnSW6Bsq8vAR5d IT/nUP8msaN1dlNvrYPvrCtC8HYMUhpoDB97WfFm0g7GwseCs9cfLwengGUIZGQ3RG7kEV lnxYjKc0QJvS80OqgNeQ5RQ+6am4W35Bh1AofdgIMZ4HnCfSJFTvK3CVYNOz9eJtXDthpi VTvDVy+nIAvz0ror/7teQ2Q1ZwTjl5KrA0r84s5/y49kKaSdCgF5fq2iHZFa/A== Received: by people01.haj.ipfire.org (Postfix, from userid 1000) id 4gK4Zz3Hmkz2y6s; Mon, 18 May 2026 17:30:51 +0000 (UTC) To: ipfire-scm@lists.ipfire.org Subject: [git.ipfire.org] IPFire 2.x development tree branch, master, updated. 0a634bf539610d9aa6e4e974c65bec853116c5f1 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 9c65846ad50851ee6de91b1ddf47d662a4390183 X-Git-Newrev: 0a634bf539610d9aa6e4e974c65bec853116c5f1 Message-Id: <4gK4Zz3Hmkz2y6s@people01.haj.ipfire.org> Date: Mon, 18 May 2026 17:30:51 +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, master has been updated via 0a634bf539610d9aa6e4e974c65bec853116c5f1 (commit) from 9c65846ad50851ee6de91b1ddf47d662a4390183 (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 0a634bf539610d9aa6e4e974c65bec853116c5f1 Author: Michael Tremer Date: Mon May 18 17:29:37 2026 +0000 Revert "logrotate: Rotate Suricata logs daily" This reverts commit 30ccb9ed80ee3ad70403794da4c937fd183b9bd8. Fixes: #13977 - IPS log viewer shows empty/deleted logs after midnight after Suricata logs were changed to daily rotation Reported-by: Adam Gibbons Signed-off-by: Michael Tremer ----------------------------------------------------------------------- Summary of changes: config/etc/logrotate.conf | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) Difference in files: diff --git a/config/etc/logrotate.conf b/config/etc/logrotate.conf index 2f79de933..c5f9883c7 100644 --- a/config/etc/logrotate.conf +++ b/config/etc/logrotate.conf @@ -29,12 +29,14 @@ include /etc/logrotate.d } /var/log/suricata/*.log { - daily + weekly copytruncate - notifempty + compress + ifempty missingok - sharedscripts postrotate + /bin/find /var/log/suricata -path '/var/log/suricata/[0-9]*' -prune -exec /bin/rm -rf {} \; + /bin/find /var/log/suricata -name 'fast.log.*' -mtime +28 -exec /bin/rm -rf {} \; /bin/kill -HUP `cat /var/run/suricata.pid 2> /dev/null` 2> /dev/null || true endscript } hooks/post-receive -- IPFire 2.x development tree