blob: fed34617a70c6e2fd790bcfbb65da04f64e1c220 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# default: off
# description: The rsync server is a good addition to an ftp server, as it \
# allows crc checksumming etc.
service git
{
disable = no
socket_type = stream
port = 9418
wait = no
user = nobody
server = /usr/bin/git
server_args = daemon --inetd --syslog --verbose --export-all /srv/scm
log_on_failure += USERID
}
|