From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 9B78E138262 for ; Thu, 19 May 2016 18:16:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2124A141F3; Thu, 19 May 2016 18:16:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BA47A141F3 for ; Thu, 19 May 2016 18:16:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E0A4A340D50 for ; Thu, 19 May 2016 18:16:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0909B87B for ; Thu, 19 May 2016 18:16:34 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1463681787.5fbd250e0b5f0d5943db6bcaf9df645d4314d4b1.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/dcron/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-process/dcron/dcron-4.5-r1.ebuild X-VCS-Directories: sys-process/dcron/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 5fbd250e0b5f0d5943db6bcaf9df645d4314d4b1 X-VCS-Branch: master Date: Thu, 19 May 2016 18:16:34 +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-Archives-Salt: 3121af44-b088-465c-b5eb-017ab48fc216 X-Archives-Hash: d4aa2403af04b5fafe6b25ec9361242a commit: 5fbd250e0b5f0d5943db6bcaf9df645d4314d4b1 Author: Mike Frysinger gentoo org> AuthorDate: Thu May 19 18:12:34 2016 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Thu May 19 18:16:27 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fbd250e sys-process/dcron: drop old /var/run pid file rename Since the run dir is cleared all the time, we don't really need this. sys-process/dcron/dcron-4.5-r1.ebuild | 8 -------- 1 file changed, 8 deletions(-) diff --git a/sys-process/dcron/dcron-4.5-r1.ebuild b/sys-process/dcron/dcron-4.5-r1.ebuild index c1c26f0..3e30b56 100644 --- a/sys-process/dcron/dcron-4.5-r1.ebuild +++ b/sys-process/dcron/dcron-4.5-r1.ebuild @@ -46,11 +46,3 @@ src_install() { insinto /etc/logrotate.d newins extra/crond.logrotate dcron } - -pkg_postinst() { - # upstream renamed their pid file - local src="${ROOT}/var/run/cron.pid" dst="${ROOT}/var/run/crond.pid" - if [ -e "${src}" -a ! -e "${dst}" ] ; then - cp "${src}" "${dst}" - fi -}