![Clark Boylan](/assets/img/avatar_default.png)
* 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
15 lines
459 B
Plaintext
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
|
|
}
|