Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/git/files: git-daemon.initd
Date: Mon, 24 Nov 2008 09:24:48
Message-Id: E1L4XgT-0007Gj-7S@stork.gentoo.org
1 robbat2 08/11/24 09:24:45
2
3 Modified: git-daemon.initd
4 Log:
5 Fix dumb typo, revbump to ensure any users that got the typo also get the fix.
6 (Portage version: 2.2_rc14/cvs/Linux 2.6.28-rc5-00117-g7f0f598 x86_64)
7
8 Revision Changes Path
9 1.5 dev-util/git/files/git-daemon.initd
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/git/files/git-daemon.initd?rev=1.5&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/git/files/git-daemon.initd?rev=1.5&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/git/files/git-daemon.initd?r1=1.4&r2=1.5
14
15 Index: git-daemon.initd
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-util/git/files/git-daemon.initd,v
18 retrieving revision 1.4
19 retrieving revision 1.5
20 diff -p -w -b -B -u -u -r1.4 -r1.5
21 --- git-daemon.initd 24 Nov 2008 01:08:06 -0000 1.4
22 +++ git-daemon.initd 24 Nov 2008 09:24:45 -0000 1.5
23 @@ -1,7 +1,7 @@
24 #!/sbin/runscript
25 # Copyright 1999-2008 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/git/files/git-daemon.initd,v 1.4 2008/11/24 01:08:06 robbat2 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/git/files/git-daemon.initd,v 1.5 2008/11/24 09:24:45 robbat2 Exp $
29
30 depend() {
31 need net
32 @@ -11,7 +11,7 @@ depend() {
33 start() {
34 ebegin "Starting git-daemon"
35 start-stop-daemon --start --quiet --background \
36 - --exec /usr/bin/git/git -- daemon \
37 + --exec /usr/bin/git -- daemon \
38 --pid-file=/var/run/git-daemon.pid \
39 --user=${GIT_USER} --group=${GIT_GROUP} \
40 ${GITDAEMON_OPTS}