diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-11-25 17:40:13 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-11-25 17:40:13 +0000 |
commit | 0f1cf32149ff57e3ceedd27310a8996c0e9fefaf (patch) | |
tree | 20249d43e95fcc7a49b9ec0cf59fb09c08a1fcc6 /main/git/git-daemon.initd | |
parent | 2c55ddfb09c8e21ca23f56394af498fb1f99e854 (diff) | |
download | aports-0f1cf32149ff57e3ceedd27310a8996c0e9fefaf.tar.bz2 aports-0f1cf32149ff57e3ceedd27310a8996c0e9fefaf.tar.xz |
main/git: add init.d script for git-daemon
Diffstat (limited to 'main/git/git-daemon.initd')
-rw-r--r-- | main/git/git-daemon.initd | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/main/git/git-daemon.initd b/main/git/git-daemon.initd new file mode 100644 index 0000000000..c6ee19f5c0 --- /dev/null +++ b/main/git/git-daemon.initd @@ -0,0 +1,30 @@ +#!/sbin/runscript +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git/files/git-daemon.initd,v 1.1 2010/03/17 15:13:27 sping Exp $ + +PIDFILE=/var/run/git-daemon.pid + +depend() { + need net + use logger +} + +start() { + [ -e /lib/librc.so ] || BL1_COMPAT="--name git-daemon" + ebegin "Starting git-daemon" + start-stop-daemon --start --quiet --background \ + --pidfile ${PIDFILE} ${BL1_COMPAT} \ + --exec /usr/bin/git -- daemon \ + --pid-file=${PIDFILE} \ + --user=${GIT_USER} --group=${GIT_GROUP} \ + ${GITDAEMON_OPTS} + eend $? +} + +stop() { + ebegin "Stopping git-daemon" + start-stop-daemon --stop --quiet \ + --pidfile ${PIDFILE} + eend $? +} |