From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D1655158009 for ; Fri, 23 Jun 2023 21:29:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7906EE0896; Fri, 23 Jun 2023 21:29:44 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 177CEE0896 for ; Fri, 23 Jun 2023 21:29:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1EC45340B1F for ; Fri, 23 Jun 2023 21:29:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A9A26A9F for ; Fri, 23 Jun 2023 21:29:41 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1687555705.886d5067369734fa7cd1f40439682ed6de005449.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/jenkins-bin/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/jenkins-bin/files/jenkins-bin-r2.logrotate X-VCS-Directories: dev-util/jenkins-bin/files/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 886d5067369734fa7cd1f40439682ed6de005449 X-VCS-Branch: master Date: Fri, 23 Jun 2023 21:29:41 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ff2c6bfc-19bb-43de-9fa5-41b95da1a78a X-Archives-Hash: 0a8b8c92dab87191ae9e4f9bfcc22d53 commit: 886d5067369734fa7cd1f40439682ed6de005449 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Tue Jun 20 10:45:31 2023 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Fri Jun 23 21:28:25 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=886d5067 dev-util/jenkins-bin: remove unused file Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/31552 Signed-off-by: Conrad Kostecki gentoo.org> dev-util/jenkins-bin/files/jenkins-bin-r2.logrotate | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/dev-util/jenkins-bin/files/jenkins-bin-r2.logrotate b/dev-util/jenkins-bin/files/jenkins-bin-r2.logrotate deleted file mode 100644 index 895461f0540e..000000000000 --- a/dev-util/jenkins-bin/files/jenkins-bin-r2.logrotate +++ /dev/null @@ -1,17 +0,0 @@ -/var/log/jenkins/jenkins.log /var/log/jenkins/access_log { - compress - dateext - maxage 365 - rotate 99 - size 4M - notifempty - missingok - create 644 - postrotate - [ -r /etc/conf.d/jenkins ] && . /etc/conf.d/jenkins - if [ -s /var/run/jenkins.pid ]; then - JPID=$(cat /var/run/jenkins.pid) - test -n "$(find /proc/$JPID -maxdepth 0 -user ${RUN_AS:-jenkins} 2>/dev/null)" && kill -s ALRM $JPID || : - fi - endscript -}