diff options
author | Gianni Ceccarelli <dakkar@thenautilus.net> | 2009-09-17 16:54:34 +0000 |
---|---|---|
committer | Gianni Ceccarelli <dakkar@thenautilus.net> | 2009-09-17 16:54:34 +0000 |
commit | a80e656be637446872c9ccfe8ecc3335ca0cef18 (patch) | |
tree | 1ebaabf957ebb901f763fee7834ddc8aed9c9fdb /dev-util/git/files/git-daemon.initd | |
parent | fix manifest (diff) | |
download | gentoo-overlay-a80e656be637446872c9ccfe8ecc3335ca0cef18.tar.gz gentoo-overlay-a80e656be637446872c9ccfe8ecc3335ca0cef18.tar.bz2 gentoo-overlay-a80e656be637446872c9ccfe8ecc3335ca0cef18.zip |
new git version
I need it for the new cgit
Diffstat (limited to 'dev-util/git/files/git-daemon.initd')
-rw-r--r-- | dev-util/git/files/git-daemon.initd | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/dev-util/git/files/git-daemon.initd b/dev-util/git/files/git-daemon.initd new file mode 100644 index 0000000..726fca5 --- /dev/null +++ b/dev-util/git/files/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-util/git/files/git-daemon.initd,v 1.6 2008/11/27 20:33:34 robbat2 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 $? +} |