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 D9E7D138CC0 for ; Thu, 12 Mar 2015 12:07:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6E39CE0896; Thu, 12 Mar 2015 12:07:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 05C94E0896 for ; Thu, 12 Mar 2015 12:07:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 086713407A3 for ; Thu, 12 Mar 2015 12:07:47 +0000 (UTC) Received: by oystercatcher.gentoo.org (Postfix, from userid 2298) id B2C2B1397A; Thu, 12 Mar 2015 12:07:36 +0000 (UTC) From: "Marc Schiffbauer (mschiff)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, mschiff@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-db/redis/files: redis.initd-4 X-VCS-Repository: gentoo-x86 X-VCS-Files: redis.initd-4 X-VCS-Directories: dev-db/redis/files X-VCS-Committer: mschiff X-VCS-Committer-Name: Marc Schiffbauer Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20150312120737.B2C2B1397A@oystercatcher.gentoo.org> Date: Thu, 12 Mar 2015 12:07:36 +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: 47d457bc-80c9-48df-961f-49ccb9413c15 X-Archives-Hash: 1ec6020ec61d36bda4bd2ed5b57989cc mschiff 15/03/12 12:07:36 Modified: redis.initd-4 Log: revert last init scirpt change "Fix init script pid file handling" (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0x296C6CCA35A64134) Revision Changes Path 1.4 dev-db/redis/files/redis.initd-4 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/redis/files/redis.initd-4?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/redis/files/redis.initd-4?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/redis/files/redis.initd-4?r1=1.3&r2=1.4 Index: redis.initd-4 =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-db/redis/files/redis.initd-4,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- redis.initd-4 7 Mar 2015 03:21:25 -0000 1.3 +++ redis.initd-4 12 Mar 2015 12:07:36 -0000 1.4 @@ -1,5 +1,5 @@ #!/sbin/runscript -# $Header: /var/cvsroot/gentoo-x86/dev-db/redis/files/redis.initd-4,v 1.3 2015/03/07 03:21:25 mschiff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/redis/files/redis.initd-4,v 1.4 2015/03/12 12:07:36 mschiff Exp $ REDIS_DIR=${REDIS_DIR:-/var/lib/redis} REDIS_CONF=${REDIS_CONF:-/etc/redis.conf} @@ -10,7 +10,7 @@ command=/usr/sbin/redis-server pidfile=${REDIS_PID:-/run/redis/redis.pid} -start_stop_daemon_args="--background --pidfile ${pidfile} +start_stop_daemon_args="--background --make-pidfile --pidfile ${pidfile} --chdir \"${REDIS_DIR}\" --user ${REDIS_USER} --group ${REDIS_GROUP}" command_args="${REDIS_OPTS}"