OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm:svn/subversion?expand=0&rev=40
32 lines
1.0 KiB
Plaintext
32 lines
1.0 KiB
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
|
|
# the -R option enforces read-only access, i.e. write operations to the
|
|
# repository (such as commits) will not be allowed
|
|
# authentication should be configured before allowing write access,
|
|
# see http://svnbook.red-bean.com/en/1.5/svn.serverconfig.svnserve.html#svn.serverconfig.svnserve.auth
|
|
#
|
|
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"
|