system-config/modules/cgit/files/git.xinetd
Clark Boylan 9173bc92d1 Add git-daemon to cgit server.
* modules/cgit/files/git.xinetd: Configure git xinetd

* modules/cgit/manifests/init.pp: Install git xinetd file and make sure the
* service is running.

Change-Id: I7686b1cacd257e2aa519885b969272055a74e48e
2013-08-05 11:01:22 -07:00

15 lines
459 B
Plaintext

# default: off
# description: The git dæmon allows git repositories to be exported using \
# the git:// protocol.
service git
{
disable = no
socket_type = stream
wait = no
user = nobody
server = /usr/libexec/git-core/git-daemon
server_args = --base-path=/var/lib/git --export-all --syslog --inetd --verbose /var/lib/git
log_on_failure += USERID
}