- Remove libcurl from Requires, rpm will pick this up automatically - Consolidate build/install options in %make_git (Roland McGrath) - Include DirectoryIndex in gitweb httpd-config (bug 471692) - Define DOCBOOK_XSL_172 to fix minor manpage issues - Rename %{_var}/lib/git-daemon to %{_var}/lib/git - Preserve timestamps on installed files - Quiet some rpmlint complaints - Use macros more consistently
17 lines
513 B
Plaintext
17 lines
513 B
Plaintext
# default: off
|
|
# description: The git dæmon allows git repositories to be exported using
|
|
# the git:// protocol.
|
|
|
|
service git
|
|
{
|
|
disable = yes
|
|
socket_type = stream
|
|
wait = no
|
|
user = nobody
|
|
server = /usr/bin/git
|
|
server_args = daemon --base-path=/var/lib/git --export-all --user-path=public_git --syslog --inetd --verbose
|
|
log_on_failure += USERID
|
|
# xinetd doesn't do this by default. bug #195265
|
|
flags = IPv6
|
|
}
|