Gentoo Archives: gentoo-commits

From: "Alexys Jacob (ultrabug)" <ultrabug@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/distcc/files/3.1: init
Date: Tue, 27 Dec 2011 16:09:33
Message-Id: 20111227160923.808A72004B@flycatcher.gentoo.org
1 ultrabug 11/12/27 16:09:23
2
3 Modified: init
4 Log:
5 fix init script, fix #390063
6
7 (Portage version: 2.1.10.40/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 sys-devel/distcc/files/3.1/init
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/distcc/files/3.1/init?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/distcc/files/3.1/init?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/distcc/files/3.1/init?r1=1.1&r2=1.2
15
16 Index: init
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-devel/distcc/files/3.1/init,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- init 19 Mar 2009 17:56:09 -0000 1.1
23 +++ init 27 Dec 2011 16:09:23 -0000 1.2
24 @@ -1,7 +1,7 @@
25 #!/sbin/runscript
26 -# Copyright 1999-2008 Gentoo Foundation
27 +# Copyright 1999-2011 Gentoo Foundation
28 # Distributed under the terms of the GNU General Public License v2
29 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/distcc/files/3.1/init,v 1.1 2009/03/19 17:56:09 matsuu Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/distcc/files/3.1/init,v 1.2 2011/12/27 16:09:23 ultrabug Exp $
31
32 depend() {
33 need net
34 @@ -19,8 +19,8 @@
35 # Load PATH and GCC_SPECS from gcc-config, bug #262773
36 eval "$(gcc-config -E)"
37
38 - start-stop-daemon --start --quiet --exec "${DISTCCD_EXEC}" -- \
39 - --daemon --pid-file "${DISTCCD_PIDFILE}" --user distcc \
40 + start-stop-daemon --start --quiet --exec "${DISTCCD_EXEC}" --user distcc -- \
41 + --daemon --pid-file "${DISTCCD_PIDFILE}" \
42 ${DISTCCD_OPTS}
43 eend $?
44 }