source: projects/specs/trunk/g/git/git.xinetd @ 1965

Revision 1965, 522 bytes checked in by iwaim, 14 years ago (diff)

git 1.7.1-1: add files

Line 
1# default: off
2# description: The git daemon allows git repositories to be exported using
3#       the git:// protocol.
4
5service git
6{
7        disable         = yes
8        socket_type     = stream
9        wait            = no
10        user            = nobody
11        server          = /usr/libexec/git-core/git-daemon
12        server_args     = --base-path=/srv/git --export-all --user-path=public_git --syslog --inetd --verbose
13        log_on_failure  += USERID
14# xinetd doesn't do this by default. bug #195265
15        flags           = IPv6
16}
Note: See TracBrowser for help on using the repository browser.