Install the following packages:
Code: Select all
subversion xinetd
2) Then, copy/paste the following contents into "/etc/xinetd.d/svnserve":
Then, restart xinetd to load the new config:# default: on
# description: Subversion-Server für das svn-Protokoll
service svn
{
disable = no
port = 3690
socket_type = stream
protocol = tcp
wait = no
user = root
server = /usr/bin/svnserve
server_args = -i -r /opt/svn/
}
Code: Select all
$ systemctl restart xinetd