-
Notifications
You must be signed in to change notification settings - Fork 1
/
svnbackup.conf
38 lines (29 loc) · 925 Bytes
/
svnbackup.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#this server name
SERVER=`hostname`
LOCKFILE=/var/run/svnbackup.pid
#create repo script related settings
REPOOWNED="svnbackup:svnbackup"
#path to hold all repositories, end slash matters
REPOSPATH="/var/lib/svnbackup/"
#should we install post-commit hook?
INSTALLPCHOOK=YES
#post-install hook template
PCHOOK_TMPL=/usr/share/svnbackup/templates/post-commit.tmpl
#remote svn repository related settings
#user which will has r/w access
SVNUSER=svnbackup
#path used to connect to repo
SVNPATH=svn://reposerver.local
#where temporary checkout copy should live
SVNREPOTMP=/tmp/svncopy
#where information for operation status should be saved
STATEFILE=/var/spool/svnbackup/svnbackup.state
#include dirs
include_dir=/etc
include_dir=/var/lib/dpkg
include_dir=/var/spool/cron
#include_dir=/root/bin
#exclude extentions to be added later
#setting LANG as now files may contain not onebyte symbols
LANG=en_US.utf8
export LANG