From: frank Date: Tue, 14 Aug 2012 10:00:01 +0000 (+0200) Subject: saving uncommitted changes in /etc prior to emerge run X-Git-Url: https://git.uhu-banane.net/?a=commitdiff_plain;h=a656298c05e56ae75f7a84d24bfc9456f7586d8e;p=config%2Fbruni%2Fetc.git saving uncommitted changes in /etc prior to emerge run --- diff --git a/init.d/nscd b/init.d/nscd index e613715c..339d03d7 100755 --- a/init.d/nscd +++ b/init.d/nscd @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo/src/patchsets/glibc/extra/etc/nscd,v 1.5 2011/08/29 05:21:40 vapier Exp $ +# $Header: /var/cvsroot/gentoo/src/patchsets/glibc/extra/etc/nscd,v 1.6 2012/07/03 20:05:39 vapier Exp $ depend() { use dns ldap net slapd @@ -49,9 +49,9 @@ start() { local pidfile="/var/run/nscd/nscd.pid" mkdir -p "${pidfile%/*}" - start-stop-daemon --start --quiet \ + start-stop-daemon --start --quiet --background \ --exec /usr/sbin/nscd --pidfile ${pidfile} \ - -- $secure + -- --foreground $secure eend $? }