X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id EF3E7DC0CFF for ; Mon, 21 Mar 2016 02:49:59 +0000 (UTC) Received: from nov-007-i616.relay.mailchannels.net (nov-007-i616.relay.mailchannels.net [46.232.183.170]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 52296DC00E3 for ; Mon, 21 Mar 2016 02:49:56 +0000 (UTC) X-Sender-Id: mxroute|x-authuser|developer@it-offshore.co.uk Received: from relay.mailchannels.net (localhost [127.0.0.1]) by relay.mailchannels.net (Postfix) with ESMTP id CEA2B12193F for ; Mon, 21 Mar 2016 02:49:51 +0000 (UTC) Received: from ocean.mxroute.com (ip-10-213-14-133.us-west-2.compute.internal [10.213.14.133]) by relay.mailchannels.net (Postfix) with ESMTPA id D5996121965 for ; Mon, 21 Mar 2016 02:49:50 +0000 (UTC) X-Sender-Id: mxroute|x-authuser|developer@it-offshore.co.uk Received: from ocean.mxroute.com (unassigned.psychz.net [10.122.71.23]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384) by 0.0.0.0:2500 (trex/5.6.8); Mon, 21 Mar 2016 02:49:51 +0000 X-MC-Relay: Neutral X-MailChannels-SenderId: mxroute|x-authuser|developer@it-offshore.co.uk X-MailChannels-Auth-Id: mxroute X-MC-Loop-Signature: 1458528591087:4259499265 X-MC-Ingress-Time: 1458528591087 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=it-offshore.co.uk; s=default; h=Message-Id:Date:Subject:To:From; bh=+CPRszQ5ug3P8mOS/P5wBQxihOy88pRyNADRTrmsvjQ=; b=fqAFroTZmnsfjS12Ne+aE5rXtd tIMoTREPiwTJbPSvlsaSiTHVxq52nRSeY4Gd7JbR6NpF2M0FjBJ3X3DfeZk1E4ot+XJrF08IODsKH 47AbWdJdds7m8GfK2V6I/e2XhMOlJzHHBl19QxXs9sEQohfupMAy7gusM5x+PFhS0eop0pP2tvfCk oD3RZElLJKjKLbFkiPWF03qufqoX0t8YHnWVUEK2ZMDt7ev/fhMpmsjXsnltZQUp6SqI2UUu/kcYT /pjSzznCr9BWJOz1LdOv3QPZATeP5lhrXfnK57t0DzRD6PirL/pbdghbnF9BiEfM/1KokmE2N6sX1 A/VDKzWg==; Received: from [81.4.121.188] (port=33691 helo=localhost.localdomain) by ocean.mxroute.com with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-SHA256:128) (Exim 4.86_1) (envelope-from ) id 1ahpuf-00015y-KL for alpine-aports@lists.alpinelinux.org; Sun, 20 Mar 2016 22:49:49 -0400 From: Stuart Cardall To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH] main/logrotate: add tabooext for .apk-new files Date: Mon, 21 Mar 2016 02:49:46 +0000 Message-Id: <1458528586-281-1-git-send-email-developer@it-offshore.co.uk> X-Mailer: git-send-email 2.7.2 X-AuthUser: developer@it-offshore.co.uk X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: this stops /etc/logrotate.d/*.apk-new files from being run. --- main/logrotate/logrotate.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main/logrotate/logrotate.conf b/main/logrotate/logrotate.conf index bcfc174..ba75a0c 100644 --- a/main/logrotate/logrotate.conf +++ b/main/logrotate/logrotate.conf @@ -11,6 +11,9 @@ create # use date as a suffix of the rotated file dateext +# exclude alpine files +tabooext + .apk-new + # uncomment this if you want your log files compressed compress -- 2.7.2 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---