blob: 78919445acad38c359c8fd51275db37c73250437 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
##
## Perform a hot backup of subversion repositories.
##
## REQUIRES: apt-get install subversion-tools
##
## This file can be empty, the defaults are usually good.
##
## where subversion data lives
# src = /var/lib/svn
## where to save the backups to
# dest = /var/backups/svn
## where to save temporary backups
## (if successful, $tmp is moved to $dest)
# tmp = /var/backups/svn.tmp
## the hotbackup program to use.
# HOTBACKUP = /usr/lib/subversion/hot-backup.py
|