Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo commit in src/patchsets/glibc/extra/etc: nscd
Date: Tue, 03 Jul 2012 20:05:48
Message-Id: 20120703200539.377362004B@flycatcher.gentoo.org
1 vapier 12/07/03 20:05:39
2
3 Modified: nscd
4 Log:
5 use new --foreground option to simplify nscd startup (no longer need to patch it to help out ssd in pid tracking)
6
7 Revision Changes Path
8 1.6 src/patchsets/glibc/extra/etc/nscd
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/extra/etc/nscd?rev=1.6&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/extra/etc/nscd?rev=1.6&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/extra/etc/nscd?r1=1.5&r2=1.6
13
14 Index: nscd
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo/src/patchsets/glibc/extra/etc/nscd,v
17 retrieving revision 1.5
18 retrieving revision 1.6
19 diff -u -r1.5 -r1.6
20 --- nscd 29 Aug 2011 05:21:40 -0000 1.5
21 +++ nscd 3 Jul 2012 20:05:39 -0000 1.6
22 @@ -1,7 +1,7 @@
23 #!/sbin/runscript
24 # Copyright 1999-2005 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo/src/patchsets/glibc/extra/etc/nscd,v 1.5 2011/08/29 05:21:40 vapier Exp $
27 +# $Header: /var/cvsroot/gentoo/src/patchsets/glibc/extra/etc/nscd,v 1.6 2012/07/03 20:05:39 vapier Exp $
28
29 depend() {
30 use dns ldap net slapd
31 @@ -49,9 +49,9 @@
32 local pidfile="@PIDFILE@"
33 mkdir -p "${pidfile%/*}"
34
35 - start-stop-daemon --start --quiet \
36 + start-stop-daemon --start --quiet --background \
37 --exec /usr/sbin/nscd --pidfile ${pidfile} \
38 - -- $secure
39 + -- --foreground $secure
40 eend $?
41 }