From patchwork Thu Dec 15 16:35:53 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Matthias Fischer X-Patchwork-Id: 6303 Return-Path: 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 (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4NXyXd2Q2Dz3xjm for ; Thu, 15 Dec 2022 16:36:01 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4NXyXc0f9Wzgx; Thu, 15 Dec 2022 16:36:00 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4NXyXb62Mvz2xyF; Thu, 15 Dec 2022 16:35:59 +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 (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4NXyXY71Fjz2xyF for ; Thu, 15 Dec 2022 16:35:57 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4NXyXY2jCpzD7 for ; Thu, 15 Dec 2022 16:35:57 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1671122157; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=xlOHQbaYplPHKnBKEJo32IihdYreqHJH48XDc6xohDE=; b=fAx1L3FpqFcHU/Smt2pB830T9zA/xeNi7xtJ0nxMcG1KQTXBhURoash7Z8zQC6lGSL7C9U 5H5XLN94ZnyrVyCw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1671122157; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=xlOHQbaYplPHKnBKEJo32IihdYreqHJH48XDc6xohDE=; b=PiC9qhk0Wgq8vbhgEWLY8cavhjoq1aVm/6yVJtqFgWocY2NXoOsSuWGpnxtRn9dnckc349 g+k/ujHwhS0g+rREESIrlgPh99XfC/yfzJuPMTPTiwzXQ7b8mNjbNBEDZkO4zeulpVgR5z buR0d3OTrHpoA9qTmJzOVM6RXvhMg26eFzspzOo3OrNDlBiXVyPDoM9y9gPHo2vRyavrMj wRNJhYNLnHG8DKellUQg8R/lJqmCPOBIm+oMAQQJjIjGB9FYtA12oftfd4/T+RiHW7yWbx M1ihlrYnEe34ff5MNK50f83o7TGXTKePDGBcRjf8cgl135I3umKy1Hy985cJ+w== From: Matthias Fischer To: development@lists.ipfire.org Subject: [PATCH] logrotate: Update to 3.21.0 Date: Thu, 15 Dec 2022 17:35:53 +0100 Message-Id: <20221215163553.1790-1-matthias.fischer@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" For details see: https://github.com/logrotate/logrotate/releases/tag/3.21.0 "add ignoreduplicates directive to allow duplicate file matches (#473) add --wait-for-state-lock option to wait for lock on the state file (#457) avoid failure when an anonymous non-privileged user runs logrotate (#463) support home dir expansion in olddir (#454) reduce unnecessary rename operations with start N where N > 1 (#450) unify handling of log levels (#239 #449) do not print error: when exit code is unaffected (#448)" Signed-off-by: Matthias Fischer Reviewed-by: Peter Müller --- lfs/logrotate | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lfs/logrotate b/lfs/logrotate index 0e66a68e9..eb0f2de3f 100644 --- a/lfs/logrotate +++ b/lfs/logrotate @@ -24,7 +24,7 @@ include Config -VER = 3.20.1 +VER = 3.21.0 THISAPP = logrotate-$(VER) DL_FILE = logrotate-$(VER).tar.gz @@ -42,7 +42,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_BLAKE2 = 52f1b1991f6e17d04dee3b795bd6621be707b9386cb966f1434b00f4e6d9e8242c17a88642f98db720f8eeda6c1e38d25f050eb9e9be48a8323f84c9e408cf71 +$(DL_FILE)_BLAKE2 = bd801aa8daed19213720ef36af8070277c3b36df2b866ab921bc5ff85afe97871638f4a690061ba752f16b2df53acc76373097bf95b6a7fd2821c20574a444d8 install : $(TARGET)