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 34371139694 for ; Tue, 23 May 2017 14:57:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2BAF9E0BFA; Tue, 23 May 2017 14:57:26 +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-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 07EA5E0BFA for ; Tue, 23 May 2017 14:57:25 +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 ADF13341751 for ; Tue, 23 May 2017 14:57:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1BC1D7454 for ; Tue, 23 May 2017 14:57:23 +0000 (UTC) From: "Alexys Jacob" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexys Jacob" Message-ID: <1495551430.ec7f96dca028b1b8bb89963496438ce7379bed19.ultrabug@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/redis/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/redis/files/redis.initd-4 X-VCS-Directories: dev-db/redis/files/ X-VCS-Committer: ultrabug X-VCS-Committer-Name: Alexys Jacob X-VCS-Revision: ec7f96dca028b1b8bb89963496438ce7379bed19 X-VCS-Branch: master Date: Tue, 23 May 2017 14:57:23 +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: 277cef35-77e2-4fe7-a4d0-e43da0ce4be2 X-Archives-Hash: 04093403d5d656c9354bdb7387078faa commit: ec7f96dca028b1b8bb89963496438ce7379bed19 Author: Ultrabug gentoo org> AuthorDate: Tue May 23 14:56:42 2017 +0000 Commit: Alexys Jacob gentoo org> CommitDate: Tue May 23 14:57:10 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec7f96dc dev-db/redis: fix init script regression #615766 dev-db/redis/files/redis.initd-4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-db/redis/files/redis.initd-4 b/dev-db/redis/files/redis.initd-4 index 2ede7fa1d4d..5c12fdc7c79 100644 --- a/dev-db/redis/files/redis.initd-4 +++ b/dev-db/redis/files/redis.initd-4 @@ -9,7 +9,7 @@ REDIS_TIMEOUT=${REDIS_TIMEOUT:-30} command=/usr/sbin/redis-server pidfile=${REDIS_PID:-/run/redis/redis.pid} -start_stop_daemon_args="--chdir \"${REDIS_DIR}\" --user ${REDIS_USER} --group ${REDIS_GROUP}" +start_stop_daemon_args="--background --pidfile ${pidfile} --chdir \"${REDIS_DIR}\" --user ${REDIS_USER} --group ${REDIS_GROUP}" command_args="${REDIS_OPTS}" depend() {