I'm running debian lenny server, and I've installed git on it. Now there is a git-daemon process (and appropriate opened port), but there is no /etc/init.d/git script that I could stop. I know there is /etc/sv/git-daemon/run but that doesn't help me stopping it either.

link|improve this question
feedback

3 Answers

up vote 8 down vote accepted

git-daemon under Debian is managed by runit.

sv stop git-daemon

should do it.

link|improve this answer
Thanks, tried to find this, but I couldn't get good answer. – Slartibartfast May 28 '09 at 19:48
feedback

As far as I recall the git-daemon-run package should provide the /etc/init.d/git-daemon

link|improve this answer
nope, found that on google, but doesn' work – Slartibartfast May 28 '09 at 19:46
feedback

As you can see in the README.Debian you can make a symlink :

See the sv(8) program on how to manage the service, or, alternatively, create a symbolic link /etc/init.d/git-daemon pointing to /usr/bin/sv to have an LSB compatible interface to control it:

ln -s /usr/bin/sv /etc/init.d/git-daemon /etc/init.d/git-daemon status

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.