OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm:svn/subversion?expand=0&rev=30
31 lines
948 B
Plaintext
31 lines
948 B
Plaintext
## Path: Network/Subversion/svnserve
|
|
## Description: Basic configuration for svnserve
|
|
|
|
## Type: string
|
|
## Default "-d -R -r /srv/svn/repos"
|
|
#
|
|
# default options for the svnserve process
|
|
# it is recommended to provide only readonly access to your data.
|
|
# there is no authentication possible, everyone can read and write at will
|
|
# read the subversion documentation about more info
|
|
#
|
|
SVNSERVE_OPTIONS="-d -R -r /srv/svn/repos"
|
|
|
|
## Type: string
|
|
## Default "svn"
|
|
#
|
|
# svnserve should run as unprivileged user
|
|
# the userid/groupid svn is not created during package install
|
|
# run 'groupadd svn; useradd -d /srv/svn -s /bin/false -g svn svn' to create the userid/groupid
|
|
#
|
|
SVNSERVE_USERID="svn"
|
|
|
|
## Type: string
|
|
## Default "svn"
|
|
#
|
|
# svnserve should run as unprivileged user
|
|
# the userid/groupid svn is not created during package install
|
|
# run 'groupadd svn; useradd -d /srv/svn -s /bin/false -g svn svn' to create the userid/groupid
|
|
#
|
|
SVNSERVE_GROUPID="svn"
|