16 lines
351 B
Plaintext
16 lines
351 B
Plaintext
# default: off
|
|
# description: readonly access to a subversion repository
|
|
|
|
service svn
|
|
{
|
|
disable = yes
|
|
socket_type = stream
|
|
protocol = tcp
|
|
wait = no
|
|
user = svn
|
|
group = svn
|
|
groups = yes
|
|
server = /usr/bin/svnserve
|
|
server_args = --read-only --root=/srv/svn/repos --inetd
|
|
}
|