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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 179491396D9 for ; Thu, 12 Oct 2017 20:37:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1704F2BC00D; Thu, 12 Oct 2017 20:37:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E47072BC00D for ; Thu, 12 Oct 2017 20:37:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7322933BEC7 for ; Thu, 12 Oct 2017 20:37:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 36046908D for ; Thu, 12 Oct 2017 20:37:10 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1507840618.b545fdf6233c35ef3173109dfcd3d0c2b05da205.robbat2@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/redis/, dev-db/redis/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/redis/files/redis.initd-5 dev-db/redis/redis-3.2.8-r4.ebuild dev-db/redis/redis-3.2.8-r5.ebuild dev-db/redis/redis-4.0.2-r1.ebuild dev-db/redis/redis-4.0.2.ebuild X-VCS-Directories: dev-db/redis/files/ dev-db/redis/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: b545fdf6233c35ef3173109dfcd3d0c2b05da205 X-VCS-Branch: master Date: Thu, 12 Oct 2017 20:37:10 +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: 9f86e221-1178-467d-9f3f-96df1bc77659 X-Archives-Hash: 986051701abfd939fc1a8d2d088b95b1 commit: b545fdf6233c35ef3173109dfcd3d0c2b05da205 Author: Robin H. Johnson gentoo org> AuthorDate: Thu Oct 12 20:30:01 2017 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Thu Oct 12 20:36:58 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b545fdf6 dev-db/redis: use s-s-d to background, disallow daemonize. Bug: https://bugs.gentoo.org/631002#c10 Package-Manager: Portage-2.3.8, Repoman-2.3.3 dev-db/redis/files/redis.initd-5 | 4 +++- dev-db/redis/{redis-3.2.8-r4.ebuild => redis-3.2.8-r5.ebuild} | 0 dev-db/redis/{redis-4.0.2.ebuild => redis-4.0.2-r1.ebuild} | 0 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-db/redis/files/redis.initd-5 b/dev-db/redis/files/redis.initd-5 index a567b1e210d..bfeeb6925ec 100644 --- a/dev-db/redis/files/redis.initd-5 +++ b/dev-db/redis/files/redis.initd-5 @@ -9,8 +9,10 @@ : ${REDIS_GROUP:=redis} : ${REDIS_TIMEOUT:=30} +# https://bugs.gentoo.org/631002#c10 +# Force '--daemonize no' to override the config file command="/usr/sbin/redis-server" -command_args="${REDIS_OPTS}" +command_args="${REDIS_OPTS} --daemonize no" command_background="true" command_user="${REDIS_USER}:${REDIS_GROUP}" pidfile="/run/${RC_SVCNAME}.pid" diff --git a/dev-db/redis/redis-3.2.8-r4.ebuild b/dev-db/redis/redis-3.2.8-r5.ebuild similarity index 100% rename from dev-db/redis/redis-3.2.8-r4.ebuild rename to dev-db/redis/redis-3.2.8-r5.ebuild diff --git a/dev-db/redis/redis-4.0.2.ebuild b/dev-db/redis/redis-4.0.2-r1.ebuild similarity index 100% rename from dev-db/redis/redis-4.0.2.ebuild rename to dev-db/redis/redis-4.0.2-r1.ebuild