summaryrefslogtreecommitdiff
path: root/dev-util/git/files/git-daemon.initd
blob: 2563c41483c7d8bee7c1984c721b8b7a23f18ea8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/sbin/runscript
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/git/files/git-daemon.initd,v 1.1 2005/10/05 15:05:04 ferdy Exp $

depend() {
	need net
	use logger
}

start() {
	ebegin "Starting git-daemon"
		start-stop-daemon --start --quiet --background \
		--exec /usr/bin/git-daemon -- ${GITDAEMON_OPTS}
	eend $?
}

stop() {
	ebegin "Stoping git-daemon"
		start-stop-daemon --stop --quiet --name git-daemon
	eend $?
}