Gentoo Archives: gentoo-commits

From: "Marc Schiffbauer (mschiff)" <mschiff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/redis/files: redis.initd-4
Date: Sat, 07 Mar 2015 03:21:28
Message-Id: 20150307032125.122DD13354@oystercatcher.gentoo.org
1 mschiff 15/03/07 03:21:25
2
3 Modified: redis.initd-4
4 Log:
5 Fix init script pid file handling (Fixes #541856) and minor RDEPEND slot error.
6
7 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0x296C6CCA35A64134)
8
9 Revision Changes Path
10 1.3 dev-db/redis/files/redis.initd-4
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/redis/files/redis.initd-4?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/redis/files/redis.initd-4?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/redis/files/redis.initd-4?r1=1.2&r2=1.3
15
16 Index: redis.initd-4
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-db/redis/files/redis.initd-4,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- redis.initd-4 2 Dec 2014 15:33:37 -0000 1.2
23 +++ redis.initd-4 7 Mar 2015 03:21:25 -0000 1.3
24 @@ -1,5 +1,5 @@
25 #!/sbin/runscript
26 -# $Header: /var/cvsroot/gentoo-x86/dev-db/redis/files/redis.initd-4,v 1.2 2014/12/02 15:33:37 ultrabug Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-db/redis/files/redis.initd-4,v 1.3 2015/03/07 03:21:25 mschiff Exp $
28
29 REDIS_DIR=${REDIS_DIR:-/var/lib/redis}
30 REDIS_CONF=${REDIS_CONF:-/etc/redis.conf}
31 @@ -10,7 +10,7 @@
32
33 command=/usr/sbin/redis-server
34 pidfile=${REDIS_PID:-/run/redis/redis.pid}
35 -start_stop_daemon_args="--background --make-pidfile --pidfile ${pidfile}
36 +start_stop_daemon_args="--background --pidfile ${pidfile}
37 --chdir \"${REDIS_DIR}\" --user ${REDIS_USER} --group ${REDIS_GROUP}"
38 command_args="${REDIS_OPTS}"